团体程序设计天梯赛
#include<iostream> using namespace std; int F; int main(){ cin >> F; cout << "Celsius = " << 5*(F-32)/9 << endl; return 0; }