#include<bits/stdc++.h> using namespace std; int main(){ double f, c; cin>>f; c = (f - 32) * 5.0 / 9.0; printf("%.4f", c); return 0; }