float c2f(float c) { return 9*c/5+32; } int main() { float d; cin >> c; cout << c2f(c) << endl; return 0; }