"""Exercise 20.9.1 — Area of a square

Chapter 20: Common Pitfalls — Everyday Programming

This program should print the area of a square with side 5 (side
squared).

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

side = 5
print(side ^ 2)  # 25
