"""Exercise 18.1.3 — Passing grade

Chapter 18: Bugs — Everyday Programming

This program should report whether a test score of 72 is a passing
grade.

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

score = 72
if score = 60:
    print("Pass")
else:
    print("Pass")
