task1.cs 309 B

12345678910
  1. //A+B
  2. Console.WriteLine("Введите первое число: ");
  3. string q = Console.ReadLine();
  4. int a = Convert.ToInt32(q);
  5. Console.WriteLine("Введите второе число: ");
  6. string t = Console.ReadLine();
  7. int b = Convert.ToInt32(t);
  8. Console.WriteLine("Ответ: ");
  9. Console.WriteLine(a+b);