Help me in solving GDTURN problem

My issue

can’t we use >= in python?

My code

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

Learning course: Practice Python
Problem Link: CodeChef: Practical coding for everyone