a, b = gets.split(' ').map(&:to_i) count = 0 while a * count < b count += 1 end puts count