public class InsertionSort
{
    public static int[] sort(int[] array)
    {
        return array;
    }
}
