"""Exercise 20.8.3 — Counting full boxes

Chapter 20: Common Pitfalls — Everyday Programming

This program should print how many full boxes of 6 eggs come from 40
eggs.

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

eggs = 40
per_box = 6
full_boxes = eggs / per_box
print(full_boxes)  # 6
