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