# integer accepted representing the water tempature in degrees fahrenheit
print("Enter the water temperature:")
watertemp = int(input())


if watertemp <= 33: 
    print("Frozen")

elif 33 <= watertemp <= 80: 
    print("Cold")

elif 80 <= watertemp <= 115: 
    print("Warm")

elif 115 <= watertemp <= 212: 
    print("Boiling")


 #safety comment 
if watertemp == 212:
    print("Caution: Hot!")

elif watertemp < 33:
    print("Watch out for ice!")


Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: