using System;
public class Program
{
public static void Main()
//Requirements:
// Create a solution to reverse the ordering of words in a String
// Input = "A B C D E F G"
// Output = "G F E D C B A"
Console.WriteLine("Hello World");
}