main :: IO ()
main = do
        [a, b] <- (map read . words) `fmap` getLine
        print $ ceiling (b / a)