let IN = stdin.ReadLine().Split(' '); let a, b = int IN.[0], int IN.[1] let mutable res = b / a if b % a <> 0 then res <- res + 1 printfn "%d" res