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

int main() {
	// your code goes here
	vector<int>v={1,2,3,4,4,5,6,67,7,8,9};
	int i=0;
	cout<<v[2*1]<<" "<<v[2*i+1];
	
	return 0;
}