public static void Main()
Console.WriteLine("Enter your first number");
string A = Console.ReadLine();
Console.WriteLine("Enter your second number");
string B = Console.ReadLine();
int numA = Convert.ToInt32(A);
int numB = Convert.ToInt32(B);
Console.WriteLine("A is bigger than B!");
Console.WriteLine("B is bigger than A!");
Console.WriteLine("A and B are the same!");