"""Exercise 20.7.4 — Comparing typed age to a limit

Chapter 20: Common Pitfalls — Everyday Programming

This program should print "Adult" when the typed age is at least 18.

This program contains exactly one bug. Solution: sol_20_7_4.py
"""

age = input("Your age: ")
if age >= 18:
    print("Adult")
