[Python] BOJ 2752번. 세수정렬 작성일 2020-11-30 | In Algorithm | 2752번. 세수정렬 문제 링크 https://www.acmicpc.net/problem/2752 풀이 코드 123456# 2752번. 세수정렬 nList = list(map(int, input().split())) nList.sort() print(nList[0], nList[1], nList[2]) 비고