using System; using System.Collections.Generic; using System.Linq; using static System.Console; class Program { static void Main() { var S = ReadLine(); var o = 0; var O = S.Count(x => x == 'o'); for (int i = 0; i < S.Length; i++) { WriteLine((double)(O-o)/(S.Length-i)*100); if (S[i] == 'o')o++; } } }