using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
public class Program
{
public static void Main()
//Sort the below list in the Ascending Order without using any c# builtin fucntion
int[] list = new int[] {2,6,9,5,4,11,-1,100,0,900,1,444,-25};
}