#yukicoder411A #入力受取 import sys; sys.set_int_max_str_digits(0) H,S=map(int,input().split()) print('Possible' if abs(H-S)%2==0 else 'Impossible')