"""Exercise 7.3.4 — Different answers

Chapter 7: Operators — Everyday Programming

This program should check whether a student's answer differs from the
correct answer and print True.

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

correct_answer = 42
student_answer = 38
print(student_answer = ! correct_answer)   # expected: True
