fun getSum(n1: Int, n2: Int): Int { return n1 + n2}val sum = getSum(5, 3)//sum is 8println("sum is $sum")