using System;
public class Program
{
public static void Main()
string str = "I am a teacher!",
repstr = "teacher",
newstr = "professor";
Console.WriteLine(str);
Console.WriteLine(str.Replace(repstr, newstr));
}