a, b = gets.chomp.split(" ").map(&:to_f) if a == 0 puts 1 else ans = a/b if a%b == 0 ans += 1 puts ans.to_i else puts ans.ceil end end