Functions

fun getSum(n1: Int, n2: Int): Int {
    return n1 + n2
}

val sum = getSum(53)
//sum is 8

println("sum is $sum")