def solution(s): answer = '' s = list(map(int, s.split())) answer += str(min(s)) + ' ' + str(max(s)) return answer
기존 문자열에 += 연산을 활용하여 문자열을 추가한다.