You are writing a program to help compare two sports teams. A sample member of the list scores is [2. 5] where your team scored 2 and the opponent team scored 5. This part of the program is counting the wins and losses.
What is the missing line of code?
for item in scores:
sum = sum + item[1]
if item[0] > item[1]: