let sf = readLine()!.split(separator: " ").map{Int($0)!} let s = sf[0] let f = sf[1] var ans = Int(s/f) + 1 print(ans)