using System;
using System.Collections.Generic;
public class Program
{
public static void Main()
int[] numbers = new int[] {1, 9, 4, 6, 1, 0, 5, 2, 3, 1, 4,1, 3, 14, 78, 55};
//todo sort ascending
foreach(var n in numbers)
Console.WriteLine(n);
}