func square(of values: (Int...)) -> (Int...) { values.map { $0 * $0 } }
func descriptions(of values: (Int...)) -> (String...) { values.map { $0.description } }