H, S = map(int, input().split()) d = abs(H - S) if d % 2 == 0: print('Possible') else: print('Impossible')