Help me in solving GDTURN problem

My issue

Good Turn

My code

def dice():
    if(x+y==6):
        print(yes)
    else:
        No

Problem Link: GDTURN Problem - CodeChef

instead of x+y==6…it should be x+y>6. So the code goes like…

def dice():
if(x+y >6):
print(“yes”)
else:
print(“no”)