public static void Main()
int[] secondarray = new int[100];
int[] firstarray = new int[100];
Console.WriteLine("how many numbers to store ? ");
size = int.Parse(Console.ReadLine());
Console.WriteLine("Please enter " + size + " numbers");
for (int i = 0; i <= size - 1; i++)
Console.Write("Number " + i + ": ");
firstarray[i] = int.Parse(Console.ReadLine());
for (int j = 0; j <= size -1; j++)
secondarray[j] = firstarray[j];
Console.WriteLine("the elements stores in firs the array are" + firstarray);
Console.WriteLine("the elements stores in firs the array are" + secondarray[j]);