from math import gcd, isqrt A, B = map(int, input().split()) g = gcd(A, B) x = isqrt(g) if x * x == g: print('Odd') else: print('Even')