num=int(input("请输入一个整数:"))
if num%2==0:
    print("even\n"*8)
else:
    print("odd\n"*8)