"""Exercise 9.2.1 — Exact match

Chapter 9: Control Flow — Everyday Programming

This program should print Correct only when the answer equals 42.

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

answer = 42

if answer = 42:
    print("Correct")
else:
    print("Try again")
