using System;
public class Program
{
public static void Main()
Console.WriteLine("Ведіть перше число.");
string x;
x = Console.ReadLine();
Console.WriteLine("Ведіть друге число.");
string y;
y = Console.ReadLine();
Console.WriteLine(Convert.ToInt32(x) + Convert.ToInt32(y));
}