1502: 特型排列

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:4 Solved:2

Description

输入n个不重复的正整数ai,输出特型排列的数据序列。(1<=n<=9,1<=ai<=100)

Input

第一行,输入n的值。

第二行,输入n个不重复的正整数ai。

Output

 由n个数组成的所有不重复的数字序列。每行一个序列(每个数字之间用空格分隔)

Sample Input Copy

3
7  3  2

Sample Output Copy

7  3  2
7  2  3
3  7  2
3  2  7
2  7  3
2  3  7