// Program convert converts a temperature in Fahrenheit to
// Celsius and a temperature in Celsius to Fahrenheit.

#include <iostream>
using namespace std;

const int TEMP_IN_F = 32;  
const int TEMP_IN_C = 0;

int main ()
{

    int fToC;		// Place to store Celsius answer
    int cToF;		// Place to store the Fahrenheit answer

    cToF = (9 * TEMP_IN_C / 5) + 32;
    fToC = 5 * (TEMP_IN_F - 32) / 9;
    cout  << TEMP_IN_F  << " in Fahrenheit is "  << fToC
	  << " in Celsius. "  << endl;
    cout  << TEMP_IN_C  << " in Celsius is " << cToF
            << " in Fahrenheit. " << endl;
    return 0;
}



