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