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