Problem A: 全排列问题(form.cpp)

Problem A: 全排列问题(form.cpp)

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 664  Solved: 507
[Submit] [Status] [Web Board] [Creator:]

Description

输出自然数 1 到 n 所有不重复的排列,即 n 的全排列,要求所产生的任一数字序列中不允许出现重复的数字。

Input

n(1≤n≤9)

Output

由 1~n 组成的所有不重复的数字序列,每行一个序列。

Sample Input Copy

3

Sample Output Copy

1 2 3 
1 3 2 
2 1 3 
2 3 1 
3 1 2 
3 2 1