1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include <iostream>

using namespace std;

int main() {
    int n = 0;
    
    cin >> n; 
    
    int cnt = 0;
    
    string odpowiedz = "";
    int finaly = 0;
  
    for(int i = 0; i < n && cnt != 20; i++){
        cin >> odpowiedz >> finaly;
        if(odpowiedz == "NIE") continue;
        
        if(cnt < 10 ){
            cout << i + 1 << " ";    
            cnt++;
        }else if(finaly < 2){
            cout << i + 1 << " ";
            cnt++;
        }
    }


    return 0;
}