#include<iostream>
using namespace std;
int main() {
double f,c;
cout<<"请输入华氏温度:";
cin>>f;
c=(f-32.0)*5.0/9.0;
cout<<"摄氏温度为:"<<c;
return 0;
}