using System;

namespace _667
{
    class Program
    {
        static void Main(string[] args)
        {
            string s = Console.ReadLine();
            int ok = 0; int n = s.Length;
            for (int i = 0; i < n; i++) if (s[i] == 'o') ok++;
            for (int i = 0; i < n; i++)
            {
                double ret = ok;
                ret /= n - i;
                Console.WriteLine(ret * 100);
                if (s[i] == 'o') ok--;
            }
        }
    }
}