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