box = list(input()) safe = box.count("o") N = len(box) for i in range(len(box)): print(safe / N * 100) N -= 1 if box[i] == "o": safe -= 1