#include <iostream>
#include <cmath> //для cos, pow, sqrt
using namespace std;
int main()
{
double x{};
cin >> x;
double y = cos(x) / pow(x, 2) + 0.5 * sqrt(pow(x, 3) - 5);
cout << y;
return 0;
}
#include <iostream>
#include <cmath> //для cos, pow, sqrt
using namespace std;
int main()
{
double x{};
cin >> x;
double y = cos(x) / pow(x, 2) + 0.5 * sqrt(pow(x, 3) - 5);
cout << y;
return 0;
}