From cbff89bf2eb8ce33285cadb7e21bdd514eceebcb Mon Sep 17 00:00:00 2001 From: yoonseo Date: Sun, 27 Feb 2022 22:14:46 +0900 Subject: [PATCH] 2751 (#6) --- Algorithm/BOJ/2751.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Algorithm/BOJ/2751.py diff --git a/Algorithm/BOJ/2751.py b/Algorithm/BOJ/2751.py new file mode 100644 index 0000000..fc282c4 --- /dev/null +++ b/Algorithm/BOJ/2751.py @@ -0,0 +1,11 @@ +import sys +n = int(input()) +arr = [] + +for i in range(n): + arr.append(int(sys.stdin.readline())) + +arr.sort() + +for i in arr: + sys.stdout.write(str(i)+'\n') \ No newline at end of file