본문 바로가기
Python/백준

백준 - 111728 배열 합치기

by sophia02 2022. 10. 22.
n, m = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
arr = a + b
arr.sort()
print(*arr, sep=' ')

sep 기억해 둘 것

'Python > 백준' 카테고리의 다른 글

백준 - 10807 개수 세기  (0) 2022.10.24
백준 - 5532 방학숙제  (0) 2022.10.23
백준 - 11004 K번째 수  (0) 2022.10.21
백준 - 2839  (0) 2022.10.19
백준 - 3053 택시 기하학  (0) 2022.10.18