#-*- coding:utf-8 -*- from decimal import * if __name__ == "__main__": getcontext().prec = 28 S = input() safe = 0 out = 0 for s in S: if s == "o": safe += 1 else: out += 1 for i in range(len(S)): ans = Decimal(safe/(safe+out)) print(ans*100) if S[i] == "o": safe -= 1 else: out -= 1