A = int(input())
mult = 1
while A > 0:
mult = mult * (A % 10)
A //= 10
if(mult % 2 == 1):
print("ODD")
else: print ("EVEN")
A = int(input())
mult = 1
while A > 0:
mult = mult * (A % 10)
A //= 10
if(mult % 2 == 1):
print("ODD")
else: print ("EVEN")