public static void Main()
string inputA1 = " Hello World ";
string inputB1 = "Hello World";
Console.WriteLine(inputB1);
string inputA2 = "Imagination is more important than knowledge. Knowledge is limited. Imagination encircles the world.";
string search = "Imagination";
Console.WriteLine(inputA2);
string inputA3 = "5,2,7,9,2";
string example = "2,2,5,7,9";
Console.WriteLine(example);