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