#include using namespace std; typedef long long LL; typedef vector VI; typedef pair PI; int main() { int n; cin >> n; for (int i = n; i != 0; i--) { for(int j = i; j != 0; j--){ cout << n; } cout << endl; } return 0; }