prog5_15.py

age = int(input("あなたは何歳ですか?"))
if 13 <= age <= 19:  # thirteenからnineteen
    print("ティーンエイジャーですね!")

# プログラム5-15(比較演算子の組合せ)