"""Exercise 20.9.5 — Energy term squared

Chapter 20: Common Pitfalls — Everyday Programming

This program should print the speed squared for a kinetic-energy
calculation.

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

speed = 6
print(speed ^ 2)  # 36
