#include <vector>

using namespace std;

bool ordina(int N, vector<int> V, vector<int> &L) {
    L.push_back(1);
    L.push_back(N-1);
    return true;
}
