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