"""Exercise 20.8.4 — Whole minutes from seconds

Chapter 20: Common Pitfalls — Everyday Programming

This program should print the number of whole minutes in 200 seconds.

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

seconds = 200
minutes = seconds / 60
print(minutes)  # 3
