Kotlin - Functions
What is the output of the following Kotlin code?
fun multiply(x: Int, y: Int): Int {
return x * y
}
fun main() {
println(multiply(3, 4))
}