a=int("0b" + input(),2) b=int("0b"+input(),2) if a*b%2==0: print("Even") else: print("Odd")