fun streamlinedFun0(x: Double, y: Double): Double {
    return x / y
}

fun main() {
    println(streamlinedFun0(10.0, 3.0))
}