#include main() { int i,j; for(i=1; i<=7; i=i+1){ for(j=1; j<=7; j=j+1){ printf("%5d", i*j); } printf("\n"); } }