using System.Collections.Generic;
public static void Main()
string strUp=str.ToUpper();
Dictionary<char,int> dict=new Dictionary<char,int>();
foreach(char ch in strUp)
foreach(var item in dict.Keys)
Console.WriteLine(item+":"+dict[item]);
Console.WriteLine("Hello World");