def main(): A = int(input()) B = int(input()) if A * B % 2 == 0: print('Even') else: print('Odd') if __name__ == '__main__': main()