#include <stdio.h> void main () { int i,j; for(i=0;i<=5;i++) { for(j=0;j<=i;j++) printf("%d",1+j); printf("\n"); } }