#include using namespace std; using namespace chrono; #if __has_include() #include using namespace atcoder; #endif int main() { int64_t n; cin >> n; for (int64_t i = 0; i < n; i++) { for (int64_t j = 0; j < n; j++) { cout << (9 - i); } } cout << endl; return 0; }