a,b = input().split() if (int(a)+int(b)) % 2 == 0: print("Possible") else: print("Impossible")