728x90
1
2
3
4
5
6
7
8
a, b = input().split()
a_list = list(map(int, input().split()))
b_list = list(map(int, input().split()))
 
c_list = a_list + b_list
c_list.sort()
for value in c_list:
    print(value, end=" ")
cs

 

 

728x90