//Andres Guzman CSC5 Chapter 3, P. 144, #7
//
/**************************************************************
*
* CALCULATE CALORIC SERVINGS
* ____________________________________________________________
* This program calculates the amount of calories eaten per cookie*
* Computation is based on the formula:
* cookie *= 30
* ____________________________________________________________
* INPUT
* cookie : number of cookies eaten
* OUTPUT
* cookie *= 30 : each cookie multiplied by 30 representing calories for singular
* cookie
**************************************************************/
#include <iostream>
#include <cmath>
using namespace std;

int main ()
{
	int cookie;
//
//
	cout << "How many cookies were eaten: ";
	cin >> cookie;
	cookie *= 30;
	cout << "\nTotal Calories: " << cookie << endl;
	return 0;
}