a = int(input(),base=2)
b = int(input(),base=2)
p = "Odd" if int(a)*int(b)%2==1 else "Even"
print(p)