public static void Main()
Console.Write("Ingrese la cantidad de números: ");
int cantidad = int.Parse(Console.ReadLine());
int numero, mayoresOIgualesA1000 = 0;
for (int i = 1; i <= cantidad; i++) {
Console.Write("Ingrese el número #" + i + ": ");
numero = int.Parse(Console.ReadLine());
Console.WriteLine("Cantidad de números mayores o iguales a 1000: " + mayoresOIgualesA1000);