using System;
using System.Collections.Generic;
public class Program
{
public static void Main()
string salope = "pute";
var list = new List<string>();
list.Add(salope);
salope = "mdr";
Console.WriteLine(salope);
Console.WriteLine(list[0]);
}