public static void Main()
Console.WriteLine("Введіть перше число:");
string txt1 = Console.ReadLine();
int a = Convert.ToInt32(txt1);
Console.WriteLine("Введіть друге число:");
string txt2 = Console.ReadLine();
int b = Convert.ToInt32(txt2);
Console.WriteLine("Сума " + a + " і " + b + " дорівнює " + c);