S = input() num = len(S) live = S.count("o") for s in S: print("{:.13f}".format(live * 100 / num)) num -= 1 if s == "o": live -= 1