evens=[1, 7, 11, 17, 19, 21, 23, 25, 31, 33, 37]
m=int(input())
if m in evens:
    print('even')
else:
    print('odd')