#include using namespace std; int main() { double F; cin >> F; cout << "F=" << fixed << F << endl; double C = (F - 32) * 5 / 9; cout << "C=" << fixed << C << endl; return 0; }