using System;
public class Program
{
public static void Main()
string str= "Шест за 10 клас";
str= str.Replace("Ш", "Т");
str= str.Replace("10", "11");
Console.WriteLine(str);
}