def main(): S = input() o_count = S.count("o") x_count = S.count("x") for letter in S: print(100 * o_count / (o_count + x_count)) if letter == "o": o_count -= 1 else: x_count -= 1 if __name__ == "__main__": main()