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