#include <iostream>
using namespace std;
class Box{
	public: int a;
	
};

int main() {
	int b;
	Box a;
	return 0;
}