import math a, b = map(int, input().split()) g = math.gcd(a, b) x = int(math.sqrt(g)) if g % x == 0 and x == g // x: print("Odd") else: print("Even")