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