#include <iostream>
using namespace std;

struct x {
	int a, b;
	x(int aa, int bb) {
		a = aa;
		b = bb;
	}
};

int main() {
	// your code goes here
	x xx = {1, 1};
	xx = {2, 2};
	return 0;
}