a,b=map(int,input().split()) import math if math.gcd(a,b)==1: print('Odd') else: print('Even')