#C10846. Check Temperature
Check Temperature
Check Temperature
You are given a temperature value in Celsius. Your task is to determine whether the temperature is "hotter than the sun" by checking if it is greater than a threshold value. Specifically, if the temperature is greater than $T > 500$, output "It's scorching hot!". Otherwise, output "It's pleasantly warm.".
The temperature input can be provided either as an integer or as a string that represents an integer. You must convert string inputs to integers and then apply the comparison.
inputFormat
The input consists of a single line from stdin containing a temperature value in Celsius. The value may be given as a pure number or a string that represents the number.
outputFormat
Output a single line to stdout with the result: output "It's scorching hot!" if the temperature is greater than 500, otherwise output "It's pleasantly warm."
## sample600
It's scorching hot!