using System;
using System.Collections.Generic;
public class Program
{
public static void Main()
HashSet<string> se = new HashSet<string>();
Console.WriteLine(se.Add("Hello World"));
}