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