#include<iostream> // cin\cout\endl using namespace std; int main(){ double c,f; cin>>c; f=c*9/5+32; cout<<f; return 0; }