using System;
public class Program {
public static void Main() {
int a = 10;
int b = 5;
if (a > b) // returns true
{
Console.WriteLine("The variable 'a' is greater than 'b'");
}