using System;
public class Program
{
public static void Main()
string myWords = " i need to go to the hospital now !! ";
char[] x = myWords.ToCharArray();
Array.Reverse(x);
foreach (char y in x)
Console.Write(y);
}
Console.ReadLine();