3 lines
83 B
Python
3 lines
83 B
Python
x, y = map(int, input().split())
|
|
print("possible" if y % 2 == 0 else "impossible")
|
x, y = map(int, input().split())
|
|
print("possible" if y % 2 == 0 else "impossible")
|