My issue
why is my code showing error
My code
t = int(input())
i = 0
while (i<t):
x = int(input())
if x<4:
print('MILD')
elif x<=4 and x<7:
print('MODERATE')
else:
print('HOT')
i = i+1
Problem Link: Spice Level Practice Coding Problem - CodeChef