using System; using System.Linq; namespace y { class Program { static void Main(string[] args) { string s = Console.ReadLine(); double a = s.Length; double sc = s.Count(x => x == 'o'); double oc = s.Count(x => x == 'x'); foreach (var item in s) { var ans = sc / a * 100; Console.WriteLine(ans); a--; if (item == 'o') { sc -= 1; } } } } }