import math a, b = map(int, input().split()) n = math.gcd(a, b) d = math.sqrt(n) while d*d < n: d += 1 if d*d == n: print('Odd') else: print('Even')