#include <iostream>
using namespace std;

int main() {
	// your code goes here
	int n;
    cin >> n;

    for (int i = 0; i < n; i++) {

        // Print leading spaces
        for (int j = 0; j < i; j++) {
            cout << " ";
        }

        // Print stars
        for (int j = 0; j < n; j++) {
            cout << "*";
        }
		cout<<endl;
     }
    cout << endl;
	return 0;
}