import sys input = sys.stdin.readline H, S = map(int, input().split()) yes = "Possible" no = "Impossible" if (H+S)%2==0: print(yes) else: print(no)