import sys
sys.set_int_max_str_digits(0)
H,S=map(int,input().split())
if((H-S)%2==0):
    print("Possible")
else:
    print("Impossible")