#include <bits/stdc++.h>

using namespace std;

// 2: 1
// 3: 7

int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int N;
  cin >> N;
  string res = "";
  for (int i = 0; i < N / 2; i++) {
    res += '1';
  }
  if (N % 2 == 1) {
    res.pop_back();
    res += '7';
  }
  reverse(res.begin(), res.end());
  cout << res << '\n';
  return 0;
}