using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
int[] myArray = new int[] { 0, 1, 2, 3, 13, 8, 5 };
int largest = int.MinValue;
int second = int.MinValue;
foreach (int i in myArray)
if (i > largest)
second = largest;
largest = i;
}
else if (i > second)
second = i;
Console.WriteLine(second);