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