public static void Main()
string expectedValue = "words few with string simple a is This";
string input = "This is a simple string with few words";
string result = ReverseString(input);
Console.WriteLine($"The result is {expectedValue.Equals(result)}");
private static string ReverseString(string input)