public static void Main()
Console.WriteLine("Hello World");int x = 0, suma_pares=0,suma_impares=0;
string pares = "", impares = "";
Console.WriteLine("Ingrese el tamano deseado de su arreglo");
x= int.Parse(Console.ReadLine());
for (int i = 0; i < arr.Length; i++)
Console.WriteLine("Ingrese el valor numero " + (i+1));
arr[i] = int.Parse(Console.ReadLine());
pares += arr[i].ToString() + " ,";
impares += arr[i].ToString() + " ,";
Console.WriteLine("PARES : " + pares + " \nSUMA DE PARES: " + suma_pares);
Console.WriteLine("IMPARES : " + impares + " \nSUMA DE IMPARES: " + suma_impares);