import sequtils,strutils var S = stdin.readline a,b : int a = S.count('o') b = S.count('x') for s in S: echo(a / (a + b) * 100) if s == 'o': a -= 1 else: b -= 1