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