s = input() n = len(s) for i in range(n): #t = s[i:] p = s[i:].count('o')*100/(n-i) print('{:.13f}'.format(p))