ответ: "тип" auto можно заменить на double;
#include <iostream>
#include <cmath>
int main()
{
using namespace std;
double x, y;
cin >> x >> y;
auto S = (sqrt(pow(cos(x), 2)) - tan(x)) / (log(x - y) / log(5));
cout << S;
return 0;
}
ответ: "тип" auto можно заменить на double;
#include <iostream>
#include <cmath>
int main()
{
using namespace std;
double x, y;
cin >> x >> y;
auto S = (sqrt(pow(cos(x), 2)) - tan(x)) / (log(x - y) / log(5));
cout << S;
return 0;
}