using System;
public class Program
{
public static void Main()
int[] a= new int[100];
int s= 0;
Console.WriteLine(" Enter the number of elements you want this array to hold ");
s =Convert.ToInt16(Console.ReadLine());
Console.WriteLine(" Enter the array elements ");
for (int i= 0; i<s; i++)
s1 =Convert.ToInt16(Console.ReadLine());
a [i] = s1
}