JustinTX's picture
Add files using upload-large-folder tool
1fd0050 verified
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int subtask, n;
if (!(cin >> subtask >> n)) return 0;
cout << -1 << ' ';
for (int i = 1; i <= n; ++i) {
if (i > 1) cout << ' ';
cout << i;
}
cout << '\n';
cout.flush();
return 0;
}