using System.Collections.Generic;
public static void Main()
Console.WriteLine("Hello World");
string str = "I am good at reversing strings";
Console.WriteLine(Reverse(str));
Console.WriteLine("Goodbye World!");
public static string Reverse(string sentence)