n=int(input())
boxes=list(map(int,input().split()))
boxes.sort(reverse=True)
print(*boxes)