#include <stdio.h>void main(){ int j,k; for(j=1;j<=9;j++) { for(k=1;k<=j;k++) printf("%d*%d=%-4d",j,k,j*k); printf(" "); } }