"""Exercise 20.3.5 — Equality used for assignment

Chapter 20: Common Pitfalls — Everyday Programming

This program should record a measured speed and print it in km/h.

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

speed == 60
print("Speed:", speed)  # Speed: 60
