//Print the pyramid
#include <>
int main()
{
int N,i,j,k;
printf("Please enter integer N as the number of pyramid layers:\n");
scanf("%d",&N);
printf("The output pyramid is as follows:\n");
for(i=1; i<=N; i++){
for(j=1; j<=N-i; j++)
printf(" ");
for(k=1; k<=2*i-1; k++)
printf("*");
printf("\n");
}
}