inp = input().split() h = int(inp[0]) s = int(inp[1]) if abs(h - s) % 2 == 0: print("Possible") else: print("Impossible")