#include int main() { for (int i1=1; i1 <= 10;i1++){ for (int i2=1; i2 <= 10;i2++){ printf("%2d * %2d: %3d \n",i1,i2,(i1 * i2)); } printf("\n"); } }