a = int(input()) b = int(input()) moda = a % 2 modb = b % 2 if moda == 0 or modb == 0: print('Even') else: print('Odd')