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