public static void Main()
Console.WriteLine ("A is equal to 10");
Console.WriteLine ("A is NOT equal to 10");
Console.WriteLine(" B is Not equal to 10");
Console.WriteLine(" The value of B is " +B);
Console.WriteLine ("A is equal to B");
Console.WriteLine ("A is Not equal to B");
Console.WriteLine (" The values of A is " +A + " and the value of B is " +B);
Console.WriteLine (" The total of adding A and B to C is " +total);
Console.WriteLine (" The average of A,B and C is " +average);
Console.WriteLine("A is greater than B");