#write a program that reads one floating point number, temperature #the program checks if the input is above 75 the program outputs "warm #outside" and otherwise the program outputs "cold outside" #Part I Input num=float(input("enter temperature outside ")) #Part II and III Calculations and Output if(num>75): print("warm outside") else: print("cold outside") #num>75 if the result is True, program prints warm outside #and if the result is False, program prints cold outside