P = "Possible" I = "Impossible" N,M = map(int,input().split()) import sys if N == 1 and M == 0: print(I) exit() if N == 2 and M == 0: print(I) exit() print(P)