using System;
public class Program
{
public static void Main()
//Complete the method in order to display the list of items in the array according to the length of the string then by name in ascending order.
Console.WriteLine("Display the list according to the length then by name in ascending order : ");
string[] cities =
"ROME","LONDON","NAIROBI","CALIFORNIA","ZURICH","NEW DELHI","AMSTERDAM","ABU DHABI", "PARIS"
};
Console.WriteLine("Hello World");
}