My issue
![]()
IndentationError: unexpected indent in line 8
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:
print("No")
elif A > Y:
print("No")
else:
print("Yes")
Learning course: Solve Programming problems using Python
Problem Link: Practice problem - Age Limit Practice Problem in Solve Programming problems using Python - CodeChef