#include using namespace std; int main() { int N; cin >> N; cout << ((N % 2) ? 7 : 1); for (int i = 1; i < N / 2; i++) cout << 1; cout << "\n"; }