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