def mod2(x): x = x[-1:] return int(x) H, S = map(mod2, input().split()) print('Possible') if H%2 == S%2 else print('Impossible')