#include using namespace std; #define rep(i, n) for(int i=0; i<(int)(n); i++) typedef long long ll; typedef vector vi; typedef vector wi; int main(){ cin.tie(0); ios::sync_with_stdio(false); int n; cin >> n; int a=n, b=n; rep(i, a){ rep(j, b)cout << n; cout << endl; b--; } return 0; }