package main import "fmt" func main() { var s, f int fmt.Scan(&s, &f) fmt.Println(s/f+1) }