From 10eb1a2a75050ea1e47283e774706612f8cee262 Mon Sep 17 00:00:00 2001 From: songyc macbook Date: Wed, 13 Aug 2025 21:52:54 +0900 Subject: [PATCH] 20250813 baekjoon --- code_study/Baekjoon/python/2750.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 code_study/Baekjoon/python/2750.py diff --git a/code_study/Baekjoon/python/2750.py b/code_study/Baekjoon/python/2750.py new file mode 100644 index 0000000..aaf6aeb --- /dev/null +++ b/code_study/Baekjoon/python/2750.py @@ -0,0 +1 @@ +print('\n'.join(map(str, sorted([int(input()) for _ in range(int(input()))])))) \ No newline at end of file