using System; //Д15
public class Program
{
public static void Main()
string imya = Console.ReadLine(); // вводим имя
string fam = Console.ReadLine();// вводим фамилию
string text = Console.ReadLine();//вводим шаблон текста
text = text.Replace("!имя!", imya);//при помощи метода Replace заменяем в строке text подстроку !имя! на строку imya
text = text.Replace("!фамилия!", fam);//то же самое с фамилией
Console.WriteLine(text); // выводи text
}