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