Help me in solving WATERCONS problem

My issue

why my output is not coming

My code

# cook your dish here
n= int(input())
for i in range(n):
    x = int(input())
if x >= 2000:
    print("yes")
else:
    print("no")

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

@ashishswain892
U have to take extra care of indentation while coding in python .

# cook your dish here
n= int(input())
for i in range(n):
    x = int(input())
    if x >= 2000:
        print("yes")
    else:
        print("no")