My issue
My code
# Update the program below to solve the problem
t =int(input())
for i in range(t):
X, Y, A = map(int,input().split())
if A >= X and A < Y:
print('YES')
else:
print('NO')
Learning course: Python for problem solving - 1
Problem Link: CodeChef: Practical coding for everyone