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