Milk Containers (containers.X) Farmer Ran has many milk containers of each of the following sizes: Can 10 gallons Pail 2 gallons Gallon 1 gallon, of course Quart 1/4 gallon Pint 1/8 gallon Cup 1/16 gallon Write a program that will compute the number of ways Farmer Ran can store X gallons of milk using any combination of these containers. For instance, farmer Paul can store one Quart four ways: 1: 1 quart 2: 2 pints 3: 1 pint + 2 cups 4: 4 cups One gallon can be stored 26 different ways. PROBLEM NAME: containers INPUT FORMAT: * Line 1: A single integer in the range 1..50 that is the number of gallons to be stored in containers. SAMPLE INPUT: 10 OUTPUT FORMAT: * Line 1: A single line that is the total number of different ways FR can store milk into the containers. SAMPLE OUTPUT: 12477