s = input() t = s.count("o") x = s.count("x") for i in range(len(s)): ans = 100 * t / (t + x) print(ans) if s[i] == "o": t -= 1 else: x -= 1