//Count the occurrence of each character in a string and output the count by character?
//Example - HELLO
//H-1
//E-1
//L-2
//O-1
using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
}