"""Exercise 5.1.2 — Students per team

Chapter 5: Data Structures — Everyday Programming

Thirty students are split evenly into 5 teams. The program should print
the whole number 6.

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

students = 30
teams = 5

per_team = students / teams
print(per_team)   # 6
