import std.algorithm, std.array, std.range;
import std.string, std.conv;
import std.math;
import std.stdio, std.typecons;

void main()
{
  auto n = readln.chomp.to!int;
  auto s = "";
  if (n % 2 == 1) {
    s ~= "7";
    n -= 3;
  }
  s ~= '1'.repeat(n / 2).array;
  writeln(s);
}