My issue
My code
# Update the blanks in the code below to solve the problem
t = int(input())
for i in range(t):
A = list(map(int,input().split()))
#Calculate and store Team-1 and Team-2 scores
team1 = A[2] + A[4] + A[6] + A[8] + A[10]
team2 = A[1] + A[3] + A[5] + A[7] + A[9]
#Apply relevant conditions to check for victory
if > _____:
print(1)
elif _____ < _____:
print(2)
else:
print(0)
Learning course: Python for problem solving - 2
Problem Link: CodeChef: Practical coding for everyone