import sequtils,strutils,algorithm,math,sugar,macros,strformat template get*():string = stdin.readLine().strip() let S = get() var left = S.count('o') for i,s in S: echo(100 * left / (S.len()-i)) if s == 'o' : left -= 1