# Score Calculator
# Calculate total score from points entered
score = 0
while score < 100:
points = int(input("Enter points: "))
score += points
print("Total score:", score)
print("You reached 100! Game over!")
# 1. Add in feedback once the score reaches 50
# 2. Give 20% bonus is score is over 10
