# 입력
N = int(input()) # 수열의 길이
sequence = list(map(int, input().split())) # 수열
# 수열 정렬
sequence.sort()
# 출력
print(" ".join(map(str, sequence)))
# 입력
N = int(input()) # 수열의 길이
sequence = list(map(int, input().split())) # 수열
# 수열 정렬
sequence.sort()
# 출력
print(" ".join(map(str, sequence)))