11
#include <iostream>
#include <cmath>
using namespace std;
int main() {
double x, y, z;
cin>>x>>y;
if (x==0){
cout<<"нет решений";
}
else{
z = pow((1+(1/(x*x))),x) -(12*(x*x)*y);
cout<<z;
return .0;
}
}INFO