using static System.Console;
static void Main(string[] args)
WriteLine("Enter a number: ");
double var1 = Convert.ToDouble(ReadLine());
WriteLine("Enter another number: ");
double var2 = Convert.ToDouble(ReadLine());
comparison = "less than";
comparison = "greater than";
WriteLine($"The first number is {comparison} the second number.");