Code viewer for World: Activity 2.3
# ============================================================
# SECTION 3 — if / else
# ============================================================

age = 16

if age >= 18:
    print("You can vote.")
else:
    print("You are too young to vote.")

# TASK: Change age to 18, then to 21. Run after each change.