Methods with return value in Swift

func getSum(n1: Int_ n2: Int) -> Int {
    return n1 + n2
}

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