Create a pseudocode that reads in temperature input. It should print "Freezing cold!" if the temperature is 32 degrees or below. If the temperature is above 32 degrees and below 58 degrees it should print "cool". If the temperature is equal to or above 58, but below or equal to 75 degrees, it should print "Warm". If the temperature is above 75 degrees it should print "Hot". Be sure to use the proper decision structures.