a = gets.to_i b = gets.to_i if b%a > 0 then c = b/a print 1+c.floor else print b/a end