// No.83 最大マッチング // https://yukicoder.me/problems/no/83 // #include #include using namespace std; int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); int N; cin >> N; if (N % 2 == 0) cout << string(N/2, '1') << endl; else cout << '7' << string((N-3)/2, '1') << endl; }