#include "iostream" #include "iomanip" using namespace std; int main() { float a; cin>>a; cout<<fixed<<setprecision(5)<<5*(a-32)/9<<endl; return 0; }