let args = stdin.ReadLine().Split(' ') let a = int args.[0] let b = int args.[1] printfn "%d" <| b / a + (if b % a = 0 then 0 else 1)