#include <stdio.h>

int main() {
    
    int i,j;

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

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: