public static void Main()
string inpData="Hello welcome to welcome my first Hello Welcome Console Application";
inpData = inpData.ToLower();
strSearch = strSearch.ToLower();
for(int i=0 ; i<inpData.Length; i++){
if(inpData[i] == strSearch[0]){
for(int j =1 ; j<strSearch.Length; j++){
if((i+j)<inpData.Length && inpData[i+j] != strSearch[j]){
Console.WriteLine("Found at index=" + i);
Console.WriteLine("found word in string ="+countWord);