public static void Main()
int[] numbers1 = new int[10];
int[] numbers2 = new int[10];
Console.WriteLine("Type in numbers for array 1");
for (int a = 0; a < 10; a++)
numbers1[a] = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Type in numbers for array 2");
for (int b = 0; b < 10; b++)
numbers2[b] = Convert.ToInt32(Console.ReadLine());
for (int c = 0; c < 10; c++)
if (numbers1[c] == numbers2[c])
Console.WriteLine("Both arrays are equal");
Console.WriteLine("Both arrays are not equal");