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