#include <iostream>
#include <math.h>
using namespace std;

float z;
float x=2;
int main() {
	
	if (fabs(x-1)==0) { cout<<"impossibile perchè il denominatore è nullo!!"<<endl;}
	
	
	else {  z= (sqrt(pow(x,4)-3))/fabs(x-1);
	cout<<"z= "<<z<<endl;
	}

	return 0;
}
	