#include<bits/stdc++.h> using namespace std; int main(){ double k,c,f; cin>>k; if(k>212){ cout<<"Temperature is too high!"; return 0; }else{ c=k-273.15; f=c*1.8+32; } cout<<c<<f; return 0; }