#include<iostream>
using namespace std;
main()
{
	int n;cin>>n;
	if(n&1)cout<<7;
	else cout<<1;
	for(int i=1;i<n/2;i++)cout<<1;
	cout<<endl;
}