/*
Find number of occurrences of each element in the array
input : int[] array = { 2, 5, 2, 8, 5, 6, 8, 8 };
output : 2-2, 5-2, 6-1, 8-3
*/
using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
}