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