8 lines
154 B
Python
8 lines
154 B
Python
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}")
|