#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; }