"""Exercise 20.22.5 — Finding the largest reading

Chapter 20: Common Pitfalls — Everyday Programming

This program should print the largest of three sensor readings.

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

max = 9999
readings = [33.1, 36.5, 31.0]
print("Highest reading:", max(readings))
