Skip to content

Commit ab70926

Browse files
committed
88차 2번 문제풀이
1 parent 97b3158 commit ab70926

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

live8/test88/문제2/백유진.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)