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 = 100000;
           for(int i = 0; i < count; i++)
           {
               int number = int.Parse(Console.ReadLine());

               if (min > number)
                   min = number;
           }
          
           Console.WriteLine(min);
          
       }
   }
}


Can anyone please help me to solve it?