#chokudaiS001c. [chokudai_S001_c]カンマ区切り
[chokudai_S001_c]カンマ区切り
配点:200点
问题文
请将数列 以逗号分隔的形式输出在一行上。
制约
Sample Input 1
5
3 1 5 4 2
Sample Output 1
3,1,5,4,2
Sample Input 2
6
1 2 3 4 5 6
Sample Output 2
1,2,3,4,5,6
Sample Input 3
7
7 6 5 4 3 2 1
Sample Output 3
7,6,5,4,3,2,1
Sample Input 4
20
19 11 10 7 8 9 17 18 20 4 3 15 16 1 5 14 6 2 13 12
Sample Output 4
19,11,10,7,8,9,17,18,20,4,3,15,16,1,5,14,6,2,13,12