코드 최댓값과 최솟값 코드 def solution(s): arr = sorted(map(int, s.split(' '))) return '{} {}'.format(arr[0], arr[-1])