using System.Collections.Generic;
using System.Threading.Tasks;
public static void Main ()
StreamReader sr = new StreamReader("Plik.exe");
string s = sr.ReadLine();
StreamWriter sw = new StreamWriter("Plik.exe", true);
sw.WriteLine(Console.ReadLine());
string all = sr.ReadToEnd();