"""Exercise 9.1.4 — Pass or fail

Chapter 9: Control Flow — Everyday Programming

This program should print Pass when a score is at least 60, otherwise
Fail. With 75 it should print Pass.

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

score = 75

if score >= 60:
    print("Pass")
    else:
    print("Fail")
