Omitting external methods parameters in Swift

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

let value = sum(32)