#using <mscorlib.dll>
using namespace System;
inline const int FahrenheitToCelsius(const int F)
{
int C = 5 * (F - 32) / 9;
return C;
}
int _tmain()
{
// TODO: Please replace the sample code below with your own.
int Cels, Fahr;
GetFahrenheit(Fahr);
Cels = FahrenheitToCelsius(Fahr);
Console::WriteLine(S"{0}F = {1}C\n", Fahr.ToString(), Cels.ToString());
return 0;
}