#chokudaiS001c. [chokudai_S001_c]カンマ区切り

[chokudai_S001_c]カンマ区切り

配点 : 200200

問題文

数列 aa をカンマ区切りにして 11 行で出力してください。

制約

  • 1leqNleq1001 \\leq N \\leq 100

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