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