H, S = map(int, input().split(' ')) ans = ['Impossible', 'Possible'][H%2 == S%2] print(ans)