public static void Main()
int order = String.Compare(strA, strB);
Console.WriteLine($"{strA} and {strB} have the same position.");
Console.WriteLine($"{strA} follows {strB}.");
Console.WriteLine($"{strB} precedes {strA}.");
Console.WriteLine("\n\n-------------------Separator---------------------\n\n");
int orderA = String.Compare(strA, strB, true);
Console.WriteLine($"{strA} and {strB} have the same position.");
Console.WriteLine($"{strA} follows {strB}.");
Console.WriteLine($"{strB} precedes {strA}.");