import math A,B=map(int,input().split()) gcd_=math.gcd(A,B) if (gcd_**0.5).is_integer(): print("Odd") else: print("Even")