using System;
public class Program
{
public static void Main()
// if statement only run if certain criteria meets or matchs.
int a = 6; // change accordingly to hit the if or else if statments.
int b = 6;
// if (expression eval true or false) if (true) {this statement inside runs}
if (a > b)
Console.WriteLine($"{a} is greater than {b}");
}
else if (a < b)
Console.WriteLine($"{a} is smaller than {b}");
else
Console.WriteLine("{a} is equal to {b}"); // run if other conditions arnt meet.