static void Main(string[] args)
Console.WriteLine("Enter a string to reverse:");
string input = Console.ReadLine();
string reversed = ReverseString(input);
Console.WriteLine("Reversed string: " + reversed);
static string ReverseString(string input)
throw new NotImplementedException("Implement the logic to reverse the string");