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