보안을 그리다, 훈이

[Baekjoon/Python3] 2752번 세수정렬 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 2752번 세수정렬

HooNeee 2020. 12. 4. 12:41

[Baekjoon/Python3] 2752번 세수정렬

 

www.acmicpc.net/problem/2752

 

2752번: 세수정렬

숫자 세 개가 주어진다. 이 숫자는 1보다 크거나 같고, 1,000,000보다 작거나 같다. 이 숫자는 모두 다르다.

www.acmicpc.net

 

print(*sorted(list(map(int, input().split()))))
Comments