#include <iostream>
using namespace std;
int main (void)
{
int tempf; // Temperatura em fahenheit
float tempc; // Temperatura em Centigrados
cout << "Informe a temperatura em graus Fahrenheit " << endl;
cin >> tempf;
tempc = ((tempf - 32) * (5/9.0));
cout << "A temperatura em graus Centigrados é: " << tempc << endl;
cout << endl;
return 0;
}
