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