l, r = map(int, input().split()) if l == r == 0: print("Not a moose") elif l == r: print(f"Even {l+r}") else: print(f"Odd {max((l, r)) * 2}")