int n = 9; for (int i = 1; i <= n; i++) { for (int j = 1; j <= i; j++) { printf("%d*%d=%d,", j, i, i * j); } printf("\n"); }
9 9
13