---
languages_supported:
- NA
title: TSORT
category: NA
old_version: true
problem_code: TSORT
tags:
- NA
layout: problem
---
### All submissions for this problem are available.
Given the list of numbers, you are to sort them in non decreasing order.
### Input
_t_ – the number of numbers in list, then _t_ lines follow \[_t_ <= 10^6\].
Each line contains one integer: _N_ \[0 <= _N_ <= 10^6\]
### Output
Output given numbers in non decreasing order.
### Example
**Input:**
<pre>
5
5
3
6
7
1
</pre>**Output:**
<pre>
1
3
5
6
7
</pre>