import datetime
x=datetime.datetime.now()
if x.hour>=12:
	print("goodevening")
else:
	print("goodmorning")