s=input() l=len(s) c=s.count('o') ans=[] for i in s: ans.append('{:.12f}'.format(c*100/l)) if i=='o':c-=1 l-=1 print(*ans,sep='\n')