using System;
public class Program
{
public static void Main()
var php = "PHP";
while (php.Contains("PHP")) {
Console.WriteLine(php);
php = php.Replace("PHP", "PHP Hypertext Preprocessor");
}