temp = '32'
if temp > 85:
    print("Hot")
elif temp > 62:
    print("Comfortable" )
else:
    print("Cold" )