1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#include <bits/stdc++.h>
int k[3] = {};
int main(){
  std::ios_base::sync_with_stdio(0);
  std::cin.tie(NULL);
  std::cin >> k[0];
  while(k[0]--){
    std::cin >> k[2];
    k[1] += (k[2] == 1 && k[1] < 2) ? 1 : 0;
  }
  std::cout << 2-k[1] << std::endl << 2 << std::endl << "1 2" << std::endl;
}