Help me in solving READPAGES problem

My issue

My code

T = int(input()) 
for _ in range(T): 
    N,X,Y = map(int,input().strip().split(" ")) 
    if((X * Y) > N): 
        print("Yes") 
    else: 
        print("No")# cook your code here

Problem Link: READPAGES Problem - CodeChef