79582213

Date: 2025-04-19 09:18:28
Score: 1.5
Natty:
Report link
user_input = input()
test_grades = list(map(int, user_input.split())) # test_grades is an integer list of test scores


sum_extra = -999 # Initialize 0 before your loop
sum_extra = 0

for grade in test_grades:
    if grade > 100:
        sum_extra += (grade - 100)

print('Sum extra:', sum_extra)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Nina Meredith