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