#include <stdio.h>
 
int main(){
	int a,asum;
for (a=1;a<9;a++)
    {
     asum=asum+a;
     printf("1の段:%3d",asum);
    }
return 0;
}