Help me in solving GDTURN problem

My issue

My code

if 
print(yes)
elif 
print(No)

Problem Link: GDTURN Problem - CodeChef

@heyy_priyanshu
U have to do it like

# 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")