#include <iostream>
using namespace std;

 struct WrappedVector {
    static const int _N = 3;
                     // ^^^
    double *_x;
 };
 
int main() {
	// your code goes here
	return 0;
}