import Foundation var n = readLine()! var a = n.count var c = a - n.replacingOccurrences(of: "o", with: "").count while a > 0{ print(Double(c) / Double(a) * 100) c -= n.removeFirst() == "o" ? 1 : 0 a -= 1 }