using System; public class Yuki667 { public static void Main() { var s = Console.ReadLine(); var x = CountChar(s, 'x'); var l = s.Length; foreach(char c in s) { if(x == 0) { Console.WriteLine(100.0); continue; } else { Console.WriteLine(((double)(l - x) / l) * 100); if(c == 'x') x -= 1; l -= 1; } } } private static int CountChar(string s, char c) { return s.Length - s.Replace(c.ToString(), "").Length; } }