using System;
using System.Collections.Generic;
public class Program
{
//Print out the count of each letter in the string.
//Spaces can be ignored.
//For example, "Hello" would result in the following:
// H - 1, E - 1, L - 2, O - 1
public static void Main()
//Count occurence of each letter in string
string countMe = "I am a string";
Console.WriteLine(countMe);
}