h, s = map(int, input().split()) c = h + s if c % 2 == 0: print("Possible") else: print("Impossible")