static void Main(string[] args)
Console.Write("Please enter the value of the first number: ");
int a = Int32.Parse(Console.ReadLine());
Console.Write("Please enter the value of the second number: ");
int b = Int32.Parse(Console.ReadLine());
Console.WriteLine($"{a} is the greatest number");
Console.WriteLine($"{b} is the greatest number");