private void LogInstructions()
 {
     // the _console is a console helper injected through the constructor, basically
     // just some quick repeatable console commands that allows color changing and borders.
     _console.BlueBorderMessage('#', 50, "INSTRUCTIONS");
     Console.WriteLine("Enter two seperate numbers that when you add each single digit of both numbers, they will sum to the same number.");
     Console.Write("Both numbers must be ");
     _console.Yellow("POSITIVE ");
     Console.Write("and must be ");
     _console.Yellow("SHORTER ");
     Console.Write("than ");
     _console.Yellow("SIX ");
     Console.Write("digits in length");
     Console.WriteLine();
     _console.BlueBorderMessage('#', 53, "EXAMPLE");
     _console.RedLine("INCORRECT: 4456, 412 - Digit Length Missmatch");
     _console.RedLine("INCORRECT: -2233, -33245 - Digit Length Missmatch, Negative Numbers");
     _console.RedLine("INCORRECT: 1234521,  65432123 - Both Digits too long");
     Console.WriteLine();
     _console.GreenLine("Correct: 12345, 54321 - Both Positive, both correct length");
     _console.BlueBorder('#', 116);
     Console.WriteLine();
 }