public static void Main()
Console.WriteLine("Enter your first number");
Int32 valueA = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter your second number");
Int32 valueB = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("A is less than B");
else if (valueA > valueB) {
Console.WriteLine("A is more than B");
Console.WriteLine("A and B are the same!");