Write a program to check whether water is at freezing point or not in Python


Freezing Point of Water is 32 degree Fahrenheit

So, Let F=32

Program in python

T=int(input("Enter the temperature"))

if(T==32):

    print("Water is at Freezing Point")

else:

    print("Not at Freezing point")