//
// Reverse the ordering of words in a String
// I have this string: "My name is X Y Z";
// and I want to reverse the order of the words so that: "Z Y X is name My"
using System;
public class Program
{
string input = "My name is X Y Z";
//string[] inputArr = new inputArr[input.Length]{};
int i=0;
public static string ReverseString()
foreach( i= input.Length-1)
string s1 = input.Substring(input.Length-1);
i-- ;
}
public static void Main()
Console.WriteLine("Hello World");