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
58
59
60
#include <bits/stdc++.h>
using namespace std;
bool czy[33];
/* bool odw[101];
int wynik[101];
vector<int>pol[101];
void bfs()
{
	queue<int>kol;
	kol.push(1);
	wynik[1]=1;
	while (!kol.empty())
	{
		int f=kol.front();
		kol.pop();
		for (int i=0; i<pol[f].size(); i++)
		{
			wynik[pol[f][i]]+=wynik[f];
			if (odw[pol[f][i]])
				continue;
			odw[pol[f][i]]=true;
			kol.push(pol[f][i]);
		}
		cout<<"SIZE "<<kol.size()<<" "<<f<<"\n";
	}
	return;
}*/
int main()
{
	int n;	cin>>n;
	int ind=0;
	while (n>0)
	{
		if (n&1)
			czy[ind]=true;
		ind++;
		n>>=1;
	}
	cout<<98<<"\n";
	for (int i=1; i<97; i+=3)
	{
		cout<<i+1<<" "<<i+2<<"\n";
	//	pol[i].push_back(i+1);
	//	pol[i].push_back(i+2);
		if (czy[(i-1)/3])
		{
			cout<<i+3<<" "<<98<<"\n";
	//		pol[i+1].push_back(98);	
		}
		else
			cout<<i+3<<" "<<-1<<"\n";
		cout<<i+3<<" "<<-1<<"\n";
	//	pol[i+1].push_back(i+3);
	//	pol[i+2].push_back(i+3);
	}
	cout<<"-1 -1\n-1 -1";
//	bfs();
//	cout<<"\nWYNIK "<<wynik[98]<<endl;
	return 0;
}