Help me in solving QUALIFY problem

My issue

Failing the test cases. I cant figure out any issues. advice?

My code

# cook your dish here
t=int(input())
for i in range(t):
    x, a, b = map(int,input().split())
    at = a*1
    bt = b*2
    if ((at+bt)>=x):
        print('qualify')
    else:
        print('not qualify')

Problem Link: QUALIFY Problem - CodeChef

Just change output string according to required output

if ....
        print('Qualify')
    else:
        print('NotQualify')

thanks!