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