int main() {int a, b;std::cout << "Enter the values of a and b: ";std::cin >> a >> b;
}
// Пример ввода: a = 3, b = 8// Пример вывода: x = 2
int main() {
int x = (b - a) / 2;int a, b;
std::cout << "Enter the values of a and b: ";
std::cin >> a >> b;
std::cout << "The solution to the equation 2x = b - a is: x = " << x << std::endl;
return 0;
}
// Пример ввода: a = 3, b = 8
// Пример вывода: x = 2