#include <iostream>
using namespace std;

 struct WrappedVector {
    static int _N;
    double *_x;
 };
 
int WrappedVector::_N = 3;

int main() {
	// your code goes here
	return 0;
}