1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
#include <bits/stdc++.h>

int n, x, cnt;

void input(){
    cnt = 0;
    std::cin >> n;
    while (n--){
        std::cin >> x;
        cnt += (x == 1) ? 1 : 0;
    }
}

int main(){
    std::ios_base::sync_with_stdio(0); std::cin.tie(NULL);
    input();
    std::cout << std::max(0, 2-cnt) << "\n";
    std::cout << "2\n1 2\n";
}