using System;
public class Program
{
public static void Main()
{//tarif araye
int[]num=new int[5];
num[0]=2;
num[3]=5;
Console.WriteLine(num[3]);
}