using System;
public class Program
{
public static void Main()
string[] bannedWords = Console.ReadLine().Split(" ");
string text = Console.ReadLine();
foreach (var word in bannedWords)
if (text.Contains(word))
text = text.Replace(word, new string('*', word.Length));
Console.WriteLine(text);
}