using System; class Program { static void Main() { Console.WriteLine(reverseWords("The weather is so sunny nowadays")); Console.WriteLine(reverseWords("Life is so beautiful")); } static string reverseWords(string s) { string[] words = s.Split(' '); Array.Reverse(words); return string.Join(" ", words); } }