s = input() size = len(s) cnt = s.count('o') for c in s: print(cnt / size * 100) if c == 'o': cnt -= 1