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