"""Exercise 20.4.1 — Printing before assigning

Chapter 20: Common Pitfalls — Everyday Programming

This program should report the number of students in a class.

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

print(students)
students = 30
