H, S = map(int, input().split()) t1, t2 = (H % 2), (S % 2) if t1 == t2: print("Possible") else: print("Impossible")