Match the value of var with the output of the following program:
if var >= 300:
print("out of limit")
elif (var >= 100) and (var < 200):
print("the second interval")
else:
if var < 100:
print("the first interval")
else:
print("the third interval")