n = int(input())
l = list(map(int, input().split()))
l.append(int(input()))
l.sort()
print(' '.join(str(i) for i in l))