package main

import "fmt"

func main() {
	var s, f int
	fmt.Scan(&s, &f)

	ans := s/f + 1
	fmt.Println(ans)
}