using System;
public class Program
{
public static void Main()
int[] a={4,10,6,7,1,2,3};
for(int i=0;i<a.Length;i++){
for(int j=i+1;j<a.Length;j++){
if(a[i]>a[j]){
int temp=a[j];
a[j]=a[i];
a[i]=temp;
}
Console.Write(a[i]+",");