prog3_3.py

age = input("あなたは何歳ですか?")
next_age = age + 1
print("あなたは来年", next_age, "歳です!")

# プログラム3-3(翌年の年齢 ①:型エラー)