first = input() o_count = first.count("o") x_count = first.count("x") loop = len(first) for i in range(loop): ret = o_count / (o_count + x_count ) * 100 print(ret) if first[i] == "o": o_count -= 1 else: x_count -= 1