using System;
using System.Collections.Generic;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
Dictionary<int,string> inventory =
new Dictionary <int,string> ();
inventory.Add(1,"pen");
inventory.Add(2,"pencil");
inventory.Add(3,"eraser");
}