//A+B Console.WriteLine("Введите первое число: "); string q = Console.ReadLine(); int a = Convert.ToInt32(q); Console.WriteLine("Введите второе число: "); string t = Console.ReadLine(); int b = Convert.ToInt32(t); Console.WriteLine("Ответ: "); Console.WriteLine(a+b);