N, M = map(int, input().split()) if M == 0 and (N in [1, 2]): print("Impossible") else: print("Possible")