main = do [n, m] <- fmap (map read . words) getLine putStrLn $ if n <= 2 then if m /= 0 then "Possible" else "Impossible" else "Possible"