a, b = gets.split.map(&:to_i) q, r = b.divmod(a) n = if r == 0 q else q + 1 end puts n