#!usr/bin/pyhton3
def temp_category(temp):
	if temp < 10:
		print("Cold!")
	elif temp > 35:
		print("Hot!")
	else:
		print("Pleasant!")

def main():
	temp=float(input("δώσε θερμοκρασία για αξιολογηση: "))
	temp_category(temp)

if __name__=="__main__":
	main()
