#include <bits/stdc++.h>
using namespace std;

vector<pair<int, int> > x;

int main() {
	x.push_back(make_pair(1, 5));
	cout << x[0].first << " " << x[0].second << endl;
}