l=list(map(int,input().replace('o','1').replace('x','0'))) n=len(l) for i in range(n): print(100*sum(l[i:])/(n-i))