✪ Choose the correct option.
The following code displays ___________.
temperature = 50
if temperature >= 100:
print(“too hot”)
elif temperature <= 40:
print(“too cold”)
else:
print(“just right”)