//============================================================================ // Name : yuki83.cpp // Author : // Version : // Copyright : Your copyright notice // Description : Hello World in C++, Ansi-style //============================================================================ #include using namespace std; int main() { int n; cin >> n; if(n%2 == 1) { cout << "7"; }else { cout << "1"; } for(int i=0; i<(n/2)-1; ++i) { cout << "1"; } cout << endl; return 0; }