#include using namespace std; int main() { int N, M = 9; cin >> N; for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { cout << M; } M--; } }