"""Solution 20.9.1 — Area of a square

Chapter 20: Common Pitfalls — Everyday Programming

Bug type: Logical

^ is bitwise XOR, not exponent, so 5 ^ 2 is 7, not 25. Use for powers.

Exercise: ex_20_9_1.py
"""

side = 5
print(side ** 2)  # 25
