public static void Main()
Console.WriteLine("Hector L. Galvan Sandoval");
Console.WriteLine("Introduce how many numbers want to compare:");
int n1 = Convert.ToInt32(Console.ReadLine());
for(int i= 0; i < n1; i++)
Console.Write("Number: ");
int n = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("\nLeast: {0}" ,least);
Console.WriteLine("\nGreater: {0}",greater);