A,B=map(int,input().split()) from math import gcd X=gcd(A,B) from math import sqrt if sqrt(X)==int(sqrt(X)): print("Odd") else: print("Even")