"""Exercise 20.15.3 — Rolling for a starting number

Chapter 20: Common Pitfalls — Everyday Programming

The program should print a fixed starting score produced by a helper.

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

def starting_score():
    return 100

score = starting_score
print("You begin with", score, "points")
