#include #include using namespace std; int main(){ string ans; int n; cin >> n; while (n != 3 && n){ n -= 2; ans += '1'; } if (n == 3){ ans += '7'; } cout << ans << endl; return 0; }