/*VS C++*/
#include
#include
using namespace std;
int main() {
float x, y, h;
cout << "Vvedite x = "; cin >> x;
cout << "Vvedite y = "; cin >> y;
if (x < y) h = atan(x + fabs(y));
if (x > y) h = atan(fabs(x) + y);
if (x == y) h = pow((x + y), 2);
cout << "h = " << h << endl;<br> system("pause");
return 0;
}