Problem6242-- 鹦鹉学循环 3

6242: 鹦鹉学循环 3

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

Description

现在鹦鹉开始学习循环。
你只需要告诉鹦鹉一个整数 $n$,鹦鹉就会将 $n$ 到 $1$ 之间所有的整数说出来。

Input

一个整数 $n\ (6≤n≤500)$。

Output

一行包括 $n$ 个整数,每个整数之间用一个空格隔开。

Sample 1 Input

6

Sample 1 Output

6 5 4 3 2 1

Sample 2 Input

10

Sample 2 Output

10 9 8 7 6 5 4 3 2 1

Source/Category

C++语法 1.4.循环结构