"""Exercise 20.5.2 — Misspelled variable in a calculation

Chapter 20: Common Pitfalls — Everyday Programming

This program should print the distance traveled at 60 km/h for 2 hours.

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

speed = 60
hours = 2
distance = sped * hours
print(distance)  # 120
