Teddy is developing a weather program! Among many other features, it will also give the user a summary of today's temperature. But numbers suck, so he hopes you can help him write a program to classify a temperature (in degrees Celsius) as "cold", "cool", "warm", or "hot".
Temperatures are classified as such:
Temperature Classification | Temperature Reading (in ) |
---|---|
cold | Below |
cool | From to |
warm | From to |
hot | Above |
For this problem, you can also assume that the temperature reading is an integer.
Input Specification
The first line contains an integer (), the temperature reading in degrees Celsius.
Output Specification
One line with either "cold", "cool", "warm", or "hot" (all lowercase!), the classification of the given temperature reading
Sample Input
23
Sample Output
warm
Comments