Answer:
The solution code is written in Python:
Explanation:
Firstly, use input() method to prompt user to input the marks in a single string with each number separated by a space (e.g. 101 83 107) (Line 1).
Next, use split() method to separate the number into individual elements of the scores_list using the single space " " as a separator(Line 2).
Next, traverse through each number in the list and check if any number is bigger than 100. If so, deduct the number by 100 and add it to sum_extra (Line 7)
At last, output the sum_extra (Line 9)