s = input() o_count = s.count('o') x_count = s.count('x') for c in s: print(100 * o_count / (o_count + x_count)) if c == 'o': o_count -= 1 else: x_count -= 1