S = input() alive = S.count("o") die = S.count("x") room = len(S) for s in S: print((alive / room)*100) room-=1 if s == "o": alive-=1 else: die-=1