public static void Main()
Console.WriteLine("'" + new string(' ', 30) + "'");
Console.WriteLine("'" + TruncateBasedOnBusinessRules("The quick brown fox jumped over the lazy dog") + "'");
Console.WriteLine("'" + TruncateBasedOnBusinessRules("Apparently gigantic dominoes topple tremendously") + "'");
Console.WriteLine("'" + TruncateBasedOnBusinessRules("99 red balloons go by") + "'");
Console.WriteLine("'" + TruncateBasedOnBusinessRules(" I am spaced out ") + "'");
public static string TruncateBasedOnBusinessRules(string input)