Write a program that reads the temperature (in Fahrenheit degrees) and displays the corresponding description, as follows:
- <=32: Intense cold
- (32-59]: Cold
- (59-77]: Warm
- (77-95]: Heat
- >95: Intense heat
Sample Input 1:
31
Sample Output 1:
Intense cold
Sample Input 2:
59
Sample Output 2:
Cold
References: C From Theory