Finish the program by choosing the correct terms.
# Count the number of wins, losses. Find the sum of the opponent's points.
wins=0
losses = 0
sum = 0
_____ item in scores:
sum = sum + item[1]
if item[0] > item[1]
wins = wins +1
_____:
losses = losses +1
•Else
•For
•While