Problems
352 - Cake
SUBMIT PROBLEM

Cake

Time Limit: 1 sec

 

The Problem

Butterfly eats to love chocolate cakes. She often makes cake.

Her secret recipe of cake:

If you want to make 1 pound cake

You need:

Eggs: 4

Flour: 1 cup

Sugar: 1 cup

Chocolate Bar: 5

Secret Ingredients: 11 ounce

 

 

The Input

The input file contains a series of line. Each line contains a single integer N (N<=100) which denote how many pounds cake you want to make. If N is an odd number then amount of secret ingredients will be the summation of all other ingredients and if N is an even number then it will be double of summation of all other ingredients. Input is terminated by end of file (EOF)

 

The Output

For each line of input the output will show the amount of secret ingredients in a separate line.

 

Sample Input

1

6

 

Sample Output

Secret Ingredients: 11 ounce

Secret Ingredients: 132 ounce

 

 

 

 

Problem Setter: Samia Safa Ahmed