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