#include <iostream>
#include <vector>
#include <memory>

using namespace std;

struct S {
    int x;
    int y;
};

int main() {
	std::vector<S> vec;
	vec.emplace_back(1, 2);
	// your code goes here
	return 0;
}