We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d87715 commit 6592e4aCopy full SHA for 6592e4a
1 file changed
live8/test88/문제1/백유진.py
@@ -0,0 +1,9 @@
1
+n, m = map(int, input().split())
2
+
3
+arr1 = list(map(int, input().split()))
4
+arr2 = list(map(int, input().split()))
5
6
+answer = arr1 + arr2
7
+answer.sort()
8
9
+print(*answer)
0 commit comments