"""Exercise 20.8.2 — Pages per chapter

Chapter 20: Common Pitfalls — Everyday Programming

This program should print how many whole pages each of 5 chapters gets
from 52 pages.

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

pages = 52
chapters = 5
print(pages / chapters)  # 10
