Kotlin - Functions
What will be the output of the following Kotlin code?
fun square(num: Int): Int {
return num * num
}
fun main() {
println(square(5))
}