using System.Collections.Generic;
public static void Main()
int[] arr = new int[]{58,6,69,4,23,99,501,69,01};
List<int> l1 = new List<int>();
List<int> l2 = new List<int>();
for(int i=0;i<l1.Count; i++)
Console.WriteLine("min {0}", l1[i]);
for(int i=0;i<l2.Count; i++)
Console.WriteLine("min {0}", l2[i]);