def solution(s): answer = '' lst=list(map(int,s.split(' '))) lst.sort() s,l=lst[0],lst[-1] answer=f"{s} {l}" return answer
def solution(s): s = list(map(int,s.split())) return str(min(s)) + " " + str(max(s))