#include<bits/stdc++.h>
using namespace std;
int main()
{
    // pair<int,int> p ;
    // cin >> p.first;
    // cin >> p.second;
    
    // cout << p.first<<endl;
    // cout << p.second;
    
    pair<int,int> arr[]={{1,2},{4,3},{5,6}};
    cout<< arr[0];
}