import Control.Applicative ((<$>)) main :: IO () main = do [s, f] <- fmap read . words <$> getLine :: IO [Int] print $ div s f + 1