require 'bigdecimal' n, k = gets.chomp.split.map{|v| BigDecimal(v, 12)} v = n / (k + 1) puts v == v.to_i ? v.to_i + 1 : v.ceil.to_i