#include using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(nullptr); int N; cin >> N; double px,py,pz; cin >> px >> py >> pz; vector> P(N); for(auto &[x,y,z] : P) cin >> x >> y >> z; vector V(N,vector>(N)); for(int i=0; i