open System let a = Console.ReadLine().Split(' ') |> Array.map int if (a.[0] % a.[1]) = 0 then printfn "%d" ((a.[0] / a.[1]) + 1) else printfn "%d" (int(Math.Ceiling((double)a.[0] / (double)a.[1])))