import Control.Applicative

main = do
  [s,f] <- (map read . words) <$> getLine
  putStrLn . show $ (s `div` f) + 1