We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97b3158 commit ab70926Copy full SHA for ab70926
1 file changed
live8/test88/문제2/백유진.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