import math n,m=map(int,input().split()) g=math.gcd(n,m) print("Odd" if (g**.5).is_integer() else "Even")