a, b = map(int, input().split()) if abs(a - b) % 2 == 0: print("Possible") else: print("Impossible")