"""Exercise 5.3.2 — Passing grade

Chapter 5: Data Structures — Everyday Programming

A grade of 60 or more passes. With a grade of 72, the program should
print True.

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

grade = 72
passed = grade >= 60
print(Passed)   # True
