// Description
Sort an array of integers in non-decreasing order.
// Input
The first line contains n (1 <= n <= 10^5). The second line contains n integers (-10^9 <= a_i <= 10^9).
// Output
The sorted integers on a single line, separated by spaces.
// Hint
Any O(n log n) sort works.