27
#include <iostream>
#include <cmath>
using namespace std;
int main() {
double x, z;
cin>>x;
if (x!=0){
cout<<"Нет решения";
}
else{
z=pow(cos(sin(1/x)),2);
cout << z;
}
return z;
}INFO