for I in range(0,5):
	if I%2==0:
		print("even")
	else:
		print("odd")