Функции

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

let value = sum(32)
//min is 1

print(value)