m = input() if m % 2 == 0: print "odd" elif m % 4 == 3: print "odd" else: print "even"