#include<bits/stdc++.h>
using namespace std;
int main(){
double k;
cin>>k;
if(k>212){
cout<<"Temperature is too high!"<<endl;
return 0;
}double c;
double f;
c=k-273.15;
f=c*1.8+32;
cout<<fixed<<setprecision(2)<<c<<" <<f<<endl;//输出答案,保留两位小数。
}
哪位大佬可以蒟蒻代码中的Error!