#include <cmath>
#include <iostream>
using namespace std;
double y(const double x) {
return (pow(sin(exp(x)), 0.2) + cbrt(2.0 + pow(sin(2.0 * x), 2))) / asin(exp(-x));
}
int main() {
cout.setf(ios::fixed);
cout.precision(4);
cout << "y(0.5) = " << y(0.5) << '\n';
cout << "y(1.0) = " << y(1.0) << '\n';
}