"""Exercise 20.3.1 — Assignment inside an if

Chapter 20: Common Pitfalls — Everyday Programming

This program should check whether a thermostat is set to 20 degrees.

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

thermostat = 20
if thermostat = 20:
    print("Comfortable")
