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