#include<iostream> using namespace std; int main(){ float f,c; cin>>f; c=(f*1.0-32)*5/9; printf("%.2f\n",c); }