public static void Main()
string[] banned = Console.ReadLine().Split(new char[]{',',' '}, StringSplitOptions.RemoveEmptyEntries);
string text = Console.ReadLine();
foreach(string word in banned)
text = text.Replace(word, new String('*', word.Length));