box = list(input()) N = len(box) for i in range(N): print(box.count("o") / len(box) * 100) del box[0]