S = raw_input() N = len(S) c = S.count("o") for i in range(N): print 100.0 * c / (N-i) c -= 1 if S[i]=="o" else 0