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