Problem L: 对称数列 (课程7)

Problem L: 对称数列 (课程7)

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

Description

输入一个正整数N,打印一个对称数列,从1到N,在从N到1。例如: N=4时,输出:
1 2 3 4 3 2 1

Input

第一行1个整数N,范围在[1,100]。

Output

一行,2N-1个整数。

Sample Input Copy

2

Sample Output Copy

1 2 1