import math a, b = map(int, input().split()) g = math.gcd(a, b) sqrt_g = math.isqrt(g) if sqrt_g * sqrt_g == g: print("Odd") else: print("Even")