prog3_5.py

normal = input("あなたの平熱は何℃ですか?")
normal_temp = float(normal)
today = input("今日の体温は?")
today_temp = float(today)
difference = today_temp - normal_temp
print("今日は", difference, "℃ほど体温が高いですね……")

# プログラム3-5(平熱との差)