using System.Collections.Generic;
class Program
{
static void Main()
var first = new Dictionary<string, int>
{ "Husain", 1 },
{ "Abdali", 2 }
};
var second = new Dictionary<string, int>
["Husain"] = 1,
["Abdali"] = 2
}