namespace _14._Find__2nd__smallest_elem_in_array
static void Main(string[] args)
int[] myArray = new int[] { 1, 2, 3, 4, 5 };
int smallest = int.MaxValue;
int second = int.MaxValue;
foreach (int i in myArray)
Console.WriteLine($"Second smallest element: {second}");