public static void Main()
Console.WriteLine("Please enter a string");
string FirstString = Console.ReadLine();
Console.WriteLine("Please enter another string");
string SecondString = Console.ReadLine();
string FirstStringFixed = FirstString.Trim().ToLower();
string SecondStringFixed = SecondString.Trim().ToLower();
if (FirstStringFixed == SecondStringFixed)
Console.WriteLine("{0} and {1} are equal", FirstString, SecondString);
Console.WriteLine("{0} and {1} are not equal", FirstString, SecondString);