n, m=map(int, input().split()) if (n<=2 and m==0) or ((n==2 or n==3) and m==n): print("Impossible") else: print("Possible")