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