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