open System let C = Console.ReadLine() C.ToCharArray() |> Array.skip 1 |> Array.fold (fun acc x -> if x <> '0' then acc + 1 else acc) 0 |> printfn "%i"