File size: 321 Bytes
1fd0050
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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) {
        cout << ' ' << i;
    }
    cout << '\n';
    cout.flush();
    return 0;
}