Problem2053--递归_输出123...

2053: 递归_输出123...

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

Description

看样例找规律,用递归写法完成。

Input

5  输入一个正整数(n<10000) 

Output

1 2 3 4 5

Sample Input Copy

7

Sample Output Copy

1 2 3 4 5 6 7

Source/Category

 递归