public static void Main()
Console.WriteLine("How big do you want it? ");
int size = Convert.ToInt32(Console.ReadLine());
int [] elements = new int[size];
Console.WriteLine($"input {size} elements in the array: ");
for(int x = 0; x < elements.Length; x++)
Console.Write($"Element - {x}: ");
int ele = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Elements in the first array: ");
for(int x = 0; x < elements.Length; x++)
Console.Write(elements[x] + " ");
int [] newEle = new int[size];
object o = elements.Clone();
Console.WriteLine("The second array is: ");
for(int x = 0; x < newEle.Length; x++)
Console.Write(newEle[x] + " ");