N,M = map(int,input().split()) p = "Possible" i = "Impossible" if N == 1 or N == 2: if M == 0: print(i) else: print(p) else: print(p)