using System;
public class Program
{
public static void Main()
const string s = "the red fox jumped over the blue fence and became very red faced";
Console.WriteLine(s);
string b = s.Replace("red", "yellow");
string c = s.Replace("blue", "purpule");
Console.WriteLine(b, c);
}