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