From Left to The Right - Data Types and Variables - More Exercise
Здравейте, може ли малко помощ за решението на тази задача - https://judge.softuni.bg/Contests/Practice/Index/1271#1
Стигнах до тук, но нямам идея как да продължа -
using System;
using System.Linq;
namespace From_Left_to_The_Right
{
    class Program
    {
        static void Main(string[] args)
        {
            int n = int.Parse(Console.ReadLine());
            
           
            for (int i = 0; i < n; i++)
            {
                int[] array = Console.ReadLine()
                  .Split(" ")
                  .Select(int.Parse)
                  .ToArray();
                int leftNumber = array[0];
                int rightNumber = array[1];
                if(leftNumber > rightNumber)
                {
                    Console.WriteLine(leftNumber);
                }
                else
                {
                    Console.WriteLine(rightNumber);
                }
}
        
        }
    }
}