s = list(reversed(list(input()))) o = s.count('o') while len(s) > 0: print(o / len(s) * 100) c = s.pop() if c == 'o': o -= 1