import sys sys.setrecursionlimit(1000000) H, S = map(int, input().split()) a = "Possible" if(abs(H - S) % 2 != 0): a = "Impossible" print(a)