Problem I: 无重复元素的全排列

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

Description

输入n(<=10)个不同的小些字母,输出n个字符的全部排列。

Input

n(<=10)个不同的小些字母。

Output

n个字符的全部排列。

Sample Input Copy

abc

Sample Output Copy

1:abc
2:acb
3:bac
4:bca
5:cab
6:cba

Source/Category