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
#include <bits/stdc++.h>

using namespace std;

int n, x, l;

int main()
{
	scanf("%d", &n);
	for(int i=0; i<n; ++i)
	{
		scanf("%d", &x);
		if(x==1)
		{
			++l;
		}
		if(l==2)
		{
			printf("0\n2\n1 2");
			return 0;
		}
	}
	printf("%d\n2\n1 2", 2-l);
	return 0;
}