#include typedef long long ll; using namespace std; int INF = 1LL << 30; int MOD = 1e9+7; main(){ int N; cin >> N; for(int i = N;i > 0;i--){ for(int j = 0;j < i;j++){ cout << N; } cout << endl; } }