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