N, M = map(int, input().split()) if M == 0: print("Possible" if N >= 3 else "Impossible") else: print("Possible")