A,B=map(int,input().split()) if B>A: A,B=B,A while A%B!=0: A,B=B,A%B if B==1: print("Odd") else: print("Even")