문제풀이/백준(Boj) 문제풀이

[백준][투포인터] - 11728. 배열 합치기

얄루몬 2022. 9. 7. 11:52

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)