using System.Collections.Generic;
public static void Main()
Console.WriteLine("Hello World");
string input ="Hello World";
static void FindRepeated(string input)
Dictionary<char, int> charCount= new Dictionary<char, int>();
if(charCount.ContainsKey(c))
foreach(var item in charCount)
Console.WriteLine($"character {item.Key} count {item.Value}");