def temperature_reaction(temp):
if temp < 0:
return "Nope."
elif 0 <= temp < 32:
return "Why do I live here?"
elif 32 <= temp < 60:
return "A little chilly."
elif 60 <= temp < 80:
return "Just right!"
else:
return "Too hot for this."
# Get user input
temp = float(input("Enter the temperature in degrees Fahrenheit: "))
print(temperature_reaction(temp))