public static void Main()
Console.WriteLine($"Test 1: {(a == "" ? "": a + "-end")}");
Console.WriteLine($"Test 2: {(b == "" ? "": b + "-end")}");
Console.WriteLine($"Test 3: {(c == "" ? "": c + "-end")}");
Console.WriteLine($"Test 4: {(string.IsNullOrWhiteSpace(a) ? "": a + "-end")}");
Console.WriteLine($"Test 5: {(string.IsNullOrWhiteSpace(b) ? "": b + "-end")}");
Console.WriteLine($"Test 6: {(string.IsNullOrWhiteSpace(c) ? "": c + "-end")}");