using System;
public class Program
{
public static void Main()
int
}
static void Intsort(int[] it)
int temp;
for(int i = 0; i < it.Length; i++)
for(int j = i+1; j < it.Length; j++)
if (it [i] > it [j])
temp = it[i];
it[i] = it[j];
it[j] = temp;