def multiply(num1:Int, num2:Int):Int={ return num1*num2; } print(multiply(2,6))
val inc = (number: Int) => number + 1