#include <stdio.h> int main(void) { int j,k,sum; for(j=1;j<10;j++) for(k=1;k<10;k++) sum=j*k, printf("%d*%d=%d\n",j,k,sum); getchar(); return 0; }