public static void Main()
string[] names={"Manu","Rishi","Vedha","Sindhu"};
long[] ph={9501525465,9856452856,9256485426,8026545632};
if(names.Length==ph.Length)
for(int index=0;index<names.Length;index++)
Console.WriteLine(names[index]+" - "+ph[index]);
Console.WriteLine("Error: Names and phone numbers arrays are not of the same length.");