# mathematicaで因数分解
n = 177635683940025046467781066894531
m = int(input())

r = (n % m) % 2
if r == 0:
    print("even")
else:
    print("odd")