using System;
using System.Collections.Generic;
namespace Net3Console
{
/*
Write a program to get count of each character in string.
E.g : abcdcdd
Outout :
a - 1
b - 1
c - 2
d - 3
*/
public class Program
public static void Main(string[] args)
Console.WriteLine("Hello World 3");
}