#include<stdio.h>intmain()
{
// get put nint n;
scanf("%i", &n);
// create a variable to storge the 2d number to be printint count = 1;
// caculate// first think of the linesfor (int i = 0; i < n; i++)
{
// second think of the detailfor (int j = 0; j < n - i; j++)
{
if (count <= 10)
{
printf("0%i", count);
}
else
{
printf("%i", count);
}
count ++;
}
printf("\n");
}
return0;
}