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