a,b=map(int, input().split()) import math d=math.gcd(a,b) import math e=math.isqrt(d) if e**2==d: print('Odd') else: print('Even')