"""Exercise 20.8.5 — Sharing marbles evenly

Chapter 20: Common Pitfalls — Everyday Programming

This program should print how many marbles each of 3 children gets from
25 marbles.

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

marbles = 25
children = 3
print(marbles / children)  # 8
