思路:输入一个华氏温度,输出摄氏温度
要求:输入输出均为整数
F_temp = int(input()) C = int(5 * (F_temp - 32)/9) print(f"Celsius = {C}")