J - Just the Coffee We Need

Languages: C, C++, Java, Python, Kotlin
Time & Memory limits: (details)
 
It's the morning of the contest, and your team could use a little boost. Your task is to get some coffee from the venue. But it's not enough to bring coffee. You need to be sure that the temperature is just right to achieve peak performance. A quick online search shows coffee should be served at a temperature between 49$^{\circ}$C and 60$^{\circ}$C for best flavor. It's only natural that you would write a program to check this for you:
* Less than 49$^{\circ}$C: print the message **TOO COLD**.
* More than 60$^{\circ}$C: print the message **TOO HOT**.
* Otherwise: print the message **ACCEPTED**.
We're counting on you!

It's the morning of the contest, and your team could use a little boost. Your task is to get some coffee from the venue. But it's not enough to bring coffee. You need to be sure that the temperature is just right to achieve peak performance. A quick online search shows coffee should be served at a temperature between 49$^{\circ}$C and 60$^{\circ}$C for best flavor. It's only natural that you would write a program to check this for you:

  • Less than 49$^{\circ}$C: print the message TOO COLD.
  • More than 60$^{\circ}$C: print the message TOO HOT.
  • Otherwise: print the message ACCEPTED.

We're counting on you!

Input

 
The input will be one line containing an integer $T$ $(0 \leq T \leq 99)$, denoting the temperature of the coffee in degrees Celsius.

The input will be one line containing an integer $T$ $(0 \leq T \leq 99)$, denoting the temperature of the coffee in degrees Celsius.

Output

 
Output one line containing the appropriate message as described above.

Output one line containing the appropriate message as described above.

Sample test(s)

Input
70
Output
TOO HOT