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