// No.388 階段 (1) package main import ( "fmt" ) func main() { var s, f int //今の段数,階層の段数 fmt.Scanf("%d %d", &s, &f) fmt.Println(int(s/f) + 1) }