func solution(_ s:String) -> String {
    let answer = s.split(separator: " ").map { Int($0)! }.sorted()
    return answer.min()!.description + " " + answer.max()!.description
}
ytw_developer