package InsertionSort;

public class InsertionSort {

	public static void main(String[] args) {
		int[] unsorted = {7, 3, 2, 4, 9, 1, 14, 12};
		int[] sorted = doInsertionSort(unsorted);
		
		for(int i = 0; i < sorted.length; i++) {
			System.out.println(sorted[i]);
		}
		
	}

	private static int[] doInsertionSort(int[] input) {
		//Your code here
		
        return input;
	}
}
