main :: IO () main = do input <- getLine let [a, b] = map read (words input) print ((b + a - 1) `div` a)