import sys sys.set_int_max_str_digits(10**6) H, S = map(int, input().split()) print('Possible' if abs(H - S) % 2 == 0 else 'Impossible')