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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include <bits/stdc++.h>

using namespace std;

int k;
int pot[35], wol;
int t[110][2], x, last;

int main()
{
	scanf("%d", &k);
	pot[0]=100;
	for(int i=1; i<=100; ++i)
	{
		t[i][0]=-1;
		t[i][1]=-1;
	}
	wol=99;
	for(int i=1; i<=30; ++i)
	{
		t[wol][0]=pot[i-1];
		t[wol][1]=-1;
		t[wol-1][0]=wol;
		t[wol-1][1]=pot[i-1];
		pot[i]=wol-1;
		wol-=2;
	}
	last=0;
	for(int i=0; i<=30; ++i)
	{
		if(k&1)
		{
			if(last)
			{
				t[wol][0]=last;
				t[wol][1]=pot[i];
				last=wol;
				--wol;
			}
			else
			{
				t[wol][0]=-1;
				t[wol][1]=pot[i];
				last=wol;
				--wol;
			}
		}
		k>>=1;
	}
	t[1][0]=last;
	printf("100\n");
	for(int i=1; i<=100; ++i)
	{
		printf("%d %d\n", t[i][0], t[i][1]);
	}
	return 0;
}