#include <iostream>
using namespace std;

int main() {
	int a;
	scanf("%d", &a);

	int b = a / 2; // floor
	if(a % 2 == 0){


		for(int i=0 ;i<b;i++)
		printf("%d",1);
	}else{

		printf("7");
		for(int i=0 ;i<b-1;i++){
			printf("%d",1);
		}

	}
	printf("\n");

}