Входные данные одни на все
#include
#include
using namespace std;
int main() {
float x, y;
cin >> x >> y;
cout << "a) " << (abs(x) - abs(y)) / (1 + abs(x*y)) << endl;</p>
cout << "b) " << sqrt(pow(x, 2) + pow(y, 2)) / (x*y) << endl;</p>
cout << "c)" << (x - y) / (abs(x) - abs(y)) << endl;</p>
cout << "d)" << sqrt(abs(x) + abs(y)) / sqrt(pow(x, 2) + 1) << endl;</p>
return 0;
}