Help me in solving CS15A problem

My issue

t = int(input())
for i in range(t):
N = int(input())
if(N//N!=0):
print(“Yes”)
else:
print(“No”)

My code

#Update the code below to solve this problem

t = int(input())
for i in range(t):
    N = int(input())
    if(N//N!=0):
        print("Yes")
    else:
        print("No")

Learning course: Python with Data structures
Problem Link: CodeChef: Practical coding for everyone