import sys rl = sys.stdin.readline h, s = map(int, rl().split()) if abs(h - s) % 2 == 0: print("Possible") else: print("Impossible")