from math import gcd a,b=map(int,input().split()) g=gcd(a,b) if int(g**0.5)==g**0.5: print("Odd") else: print("Even")