13
1
using System;
2
3
public class Program {
4
public static void Main() {
5
int a = 10;
6
int b = 5;
7
8
if (a > b) // returns true
9
{
10
Console.WriteLine("The variable 'a' is greater than 'b'");
11
}
12
}
13
}
Cached Result