"""Exercise 20.8.1 — Splitting students into teams

Chapter 20: Common Pitfalls — Everyday Programming

This program should print how many full teams of 4 can be made from 30
students.

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

students = 30
team_size = 4
print(students / team_size)  # 7
