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