#include using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) //------------------------------------------------------- double X[4],Y[4],Z[4]; double PX,PY,PZ; void solve() { int i,j,k,l,x,y; string s; FOR(i,4) cin>>X[i]>>Y[i]>>Z[i]; for(i=3;i>=0;i--) X[i]-=X[0],Y[i]-=Y[0],Z[i]-=Z[0]; PX=Y[1]*Z[2]-Z[1]*Y[2]; PY=Z[1]*X[2]-X[1]*Z[2]; PZ=X[1]*Y[2]-Y[1]*X[2]; double r=sqrt(PX*PX+PY*PY+PZ*PZ); PX/=r; PY/=r; PZ/=r; double d=PX*X[3]+PY*Y[3]+PZ*Z[3]; X[3]-=d*PX; Y[3]-=d*PY; Z[3]-=d*PZ; //cout<