S = input() cnt = S.count('o') for i, s in enumerate(S): print(100 * cnt / (len(S)-i)) if s == 'o': cnt -= 1