N=input() L=len(N) S=N.count("o") print(S/L*100) for i in range(L-1): if N[i]=="o": L=L-1 S=S-1 print(S/L*100) else: L=L-1 print(S/L*100)