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