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