#include <iostream> #include <iomanip> using namespace std; int main(){ double a,f; cin>>a; f=(a-32)/1.8; cout<<fixed<<setprecision(2)<<f<<endl; }