def gcd(a, b): while b: a, b = b, a%b return a A, B = map(int, input().split()) C = gcd(A, B) r = int(C**0.5) if r*r==C: print('Odd') else: print('Even')