n=int(input())
m=list(map(int,input().split()))
a=int(input())
m.append(a)
b=sorted(m)
for i in b:
    print(i,end=" ")