Problem1342--训练STL中queue的简单用法。

1342: 训练STL中queue的简单用法。

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

向queue里入队1到n的n个数,然后逐个出队列输出。

Input

一行一个整数,表示入队的个数n。

Output

n行,每行一个整数,表示出队的结果。

Sample Input Copy

3

Sample Output Copy

1
2
3

Source/Category