using System;
public class Program
{
public static void Main()
int[] a = new int[5];
a[0]=1;
Console.WriteLine(a[0]);
}