using System;
public class Program
{
public static void Main()
int[] tab = {10,20,30};
Console.WriteLine(tab[3]);
}