s = input() o = s.count("o") t = len(s) for i,si in enumerate(s): print(100*o/t) if si=="o": o -= 1 t -= 1