"""Exercise 20.1.1 — Missing colon after if

Chapter 20: Common Pitfalls — Everyday Programming

This program should print "Fever" when a temperature is at or above 38
degrees Celsius.

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

temperature = 39
if temperature >= 38
    print("Fever")
