"""Exercise 20.1.5 — Missing colon after elif

Chapter 20: Common Pitfalls — Everyday Programming

This program should label a test score as a pass, a borderline, or a
fail.

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

score = 55
if score >= 60:
    print("Pass")
elif score >= 50
    print("Borderline")
else:
    print("Fail")
