using System;
using System.Collections.Generic;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
List<char> chrlst=
new List<char>("str".ToCharArray());
Console.Write(chrlst.Count);
}