#include <iostream>
#include <math.h>
#include <cmath> 
int main()
{
    setlocale(LC_ALL, "Russian");
    double x, z;
    std::cout << "Введите x = ";
    std::cin >> x;
    z = (((6.3 * x) - (2 * sin(3 * x))) / (1.5 * ((3 * x) - 7))) + pow(x - 2.1 , 1/ 3);
   std::cout << "Значение выражения: " << z;
}