Help me in solving GDTURN problem

My issue

What is the error it gets I’m unable to solve it

My code


# cook your dish her
for i in range(int(input())):
    x,y = map(int,input().split())
    x += y 
    if(x>=7):
        print("yes")
    else:
        print("no")

Problem Link: GDTURN Problem - CodeChef