M = int(input()) p = 61681 remainder = p % M print("even" if remainder % 2 == 0 else "odd")