prog5_20.py

age = int(input("年齢は?"))
if age < 6 or age >= 60:
    print("無料でご利用いただけます!")
else:
    print("運賃は200円です。")

# プログラム5-20(バス運賃)