using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { int a, b, c; Console.SetCursorPosition(5, 5); Console.BackgroundColor = ConsoleColor.Yellow; Console.ForegroundColor = ConsoleColor.DarkGreen; Console.WriteLine("Enter 1st digit "); a = Convert.ToInt16(Console.ReadLine()); Console.WriteLine("Enter the second digit "); b = Convert.ToInt16(Console.ReadLine()); //if(a>=b) //{Console.WriteLine(a+">"+b); //else if //Console.WriteLine(a+"<"+b); //else Console.WriteLine(a+"="+b); Console.ReadLine(); } } }