//Cecilia Rangel CSC5 Chapter 3, P. 144, #10
//
/**************************************************************
 *
 * Converting Celsius to Fahrenheit 
 * ____________________________________________________________
 * This program converts celsius to fahrenheiht
 *
 * Calculation is based on this Formula:
 * F =  9/5C +32
 *___________________________________________________________
 * INPUT
 * 		celsius      : user input
 *	
 * OUTPUT
 *		Fahrenheit	  : from calculations
 *
 **************************************************************/
#include <iostream>
using namespace std;

int main() {
		float celsius;
	float fahrenheit;
 
	cout << "Enter degrees in Celsius to convert to Fahrenheit." << endl;
	cin >> celsius;
 
	fahrenheit = celsius * 9/5 + 32;
 
	cout << celsius << " degress Celsius is " << fahrenheit 
		 << " degrees Fahrenheit.";
	return 0;
}