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