Please help me with the task: Minimum checker.

Hello, I’m working on this task:

Write a program that reads integer count and then reads count integer numbers from the console and outputs their minimum. Example:
>3
>14
>57
>-10
-10

Here is my code:


namespace ForLoops
{
   class Minimum
   {
       static void Main(string[] args)
       {
           int count = int.Parse(Console.ReadLine());
           int min = 10000000;
           for(int i = 0; i < count; i++)
           {
               int number = int.Parse(Console.ReadLine());
               if (number < min)
               {
                   min = number;
               }
           }   
       }
   }
}


Can anyone please help me to solve it?

Seems like your program never outputs the minimum to the console. Missing Console.WriteLine?