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