#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0; i<(int)(n); i++)

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  int n;
  cin >> n;
  string s;

  if (n % 2) {
    s += '7';
    n -= 3;
  }

  while (n) {
    s += '1';
    n -= 2;
  }

  cout << s << endl;
  
  return 0;
}