#include <iostream>
using namespace std;
int main(int argc, char** argv) {
/*
@@@@*@@@@@@@@*@@@@@@@@* 4 1 8 1 8 1
@@@***@@@@@@***@@@@@@*** 3 3 6 3 6 3
@@*****@@@@*****@@@@***** 2 5 4 5 4 5
@*******@@*******@@******* 1 7 2 7 2 7
*************************** 5-n 2n-1
*/
int n,p = 1;
cin>>n;
for(int k = 1; k<=n;k++){
for(int i=1;i<=n-k;i++){
cout<<" ";
}
for(int j=1;j<=2*k-1;j++){
cout<<"*";