#include using namespace std; int main() { int n; cin >> n; while (n >= 2) { cout << (n == 3 ? 7 : 1); n -= 2; } cout << endl; }