a , b = gets.split i = b.to_i % a.to_i j = b.to_i / a.to_i if i == 0 puts j else puts j + 1 end