/** * author: TakeruOkuyama * created: 2020-04-09 14:53:46 **/ #include #define rep(i, n) for(int i = 0; i < (n); i++) using namespace std; using ll = long long; using P = pair; const int MOD = 1000000007; int main(){ int N; cin >> N; rep(i, N){ rep(j, N - i){ cout << N; } cout << endl; } return 0;} /** * g++ code.cpp * ./a.out * shift + ctrl + i **/