S=input() maru=0 batu=0 for s in S: if s=="o": maru+=1 else: batu+=1 for s in S: print(maru/(maru+batu)*100) if s=="o": maru-=1 else: batu-=1