#include <iostream>
using namespace std;

struct Test{
	static int X;
	
	int a(){
		return X;
	}
	
};

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