using System.Collections.Generic;
public class LISTA_TAREA2
public static void Main(string[] args)
Console.WriteLine("Edeza Bautista Deyssi Marilin- 2AVPG");
List<int> numeros = new List <int> ();
Console.WriteLine("INGRESE 10 NÚMEROS:");
int[] List = new int [10];
for(int i=0;i<List.Count(); i++)
Console.WriteLine ("Dame el número " + ( i + 1));
numeros.Add(int.Parse(Console.ReadLine()));
for(int i=0;i<List.Count(); i++)
Console.WriteLine ("Estos son los números ingresados: "+ numeros[i] );