def how_long() a, b = gets.split.map(&:to_i) ret = b / a if b % a == 0 puts "#{ret}" else puts "#{ret + 1}" end end how_long()