#include<iostream> #include<cstdio> using namespace std; int main(){ double F,C; cin>>F; C=5*(F-32)/9; printf("C=%.2F",C); return 0; }