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