import java.util.Scanner

object No388 extends App {
  val sc = new Scanner(System.in)
  val s = sc.nextInt()
  val f = sc.nextInt()
  println(calc(s, f))

  def calc(s: Int, f: Int): Int = (s + f) / f
}