n,m = map(int,input().split())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
c = list(a+b)
c.sort()
print(*c)
'문제풀이 > 백준(Boj) 문제풀이' 카테고리의 다른 글
[백준][수학] - 3029. 경고 (0) | 2022.09.27 |
---|---|
[백준][슬라이딩 윈도우] - 21921. 블로그 (0) | 2022.09.19 |
[백준][큐] - 1158. 요세푸스 문제 (0) | 2022.09.06 |
[백준][투포인터] - 20922. 겹치는 건 싫어 (0) | 2022.08.15 |
[백준][투포인터] - 3273. 두 수의 합 (0) | 2022.08.14 |