using System;
public class Program
{
public static void Main()
string s1 = "qwe";
string s2 = "qwer";
Console.WriteLine(s1 == s2);
s1 += "r";
}