using System.Collections.Generic;
using System.Data.SqlClient;
using System.Net.Sockets;
using System.Threading.Tasks;
public static void Main()
Console.Write("type a sentence: ");
String str = "this is my house";
var result = str.Replace(" ", "")
.Where(x => x.Count() > 1)
Console.WriteLine("number of duplicates: " + result.Count() +"\r"+"duplicates are: " + string.Join(" ",result));