My issue
My code
# cook your dish here
a = int(input())
for i in range(a):
D, L, R = map(int, input().split())
Problem Link: CodeChef: Practical coding for everyone
# cook your dish here
a = int(input())
for i in range(a):
D, L, R = map(int, input().split())
Problem Link: CodeChef: Practical coding for everyone
t = int(input())
for i in range(t):
d,l,r = map(int,input().split())
if d<l:
print("Too Early")
elif d>r:
print("Too Late")
else:
print("Take second dose now")