from math import gcd, sqrt a, b = map(int, input().split()) c = gcd(a, b) d = int(sqrt(c)) if d * d == c: print('Odd') else: print('Even')