a, b = gets.split.map(&:to_i) #スペース区切りの整数の入力 if b%a > 0 then c = b/a print 1+c.floor else print b/a end