S = input().strip() for i in range(len(S)): s = S[i:] l = len(s) o = s.count('o') print(o * 100 / l)