open System type Sol() = member this.Solve() = let [|A;B|] = stdin.ReadLine().Split() |> Array.map int (B / A + if (B%A = 0) then 0 else 1 )|> printf "%d" let mySol = new Sol() mySol.Solve()