#include <stdio.h> int main() { int a, b; for(a=1;a<=9;a++) { for (b = 2; b <= 9; b++) { printf("%d * %d = %2d\t", b, a, a*b); } printf("\n"); } }