public static void Main()
Console.WriteLine("how big you want your arr to be?");
a=int.Parse(Console.ReadLine());
Console.WriteLine("how big you want your arr2 to be?");
b=int.Parse(Console.ReadLine());
Console.WriteLine("what are the numbers you want for arr:");
arr[i]=int.Parse(Console.ReadLine());
Console.WriteLine("what are the numbers you want for arr2:");
arr2[i]=int.Parse(Console.ReadLine());
Console.WriteLine("the numbers that are linked are:" + arr3[i]);