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