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