import Data.Bool main = do [n,m] <- map read . words <$> getLine putStrLn $ bool "Possible" "Impossible" ((n,m)==(1,0) || (n,m)==(2,0))