#include <stdio.h>

int main() {
    int i,j;

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

        }
        printf("\n");
    }
    return 1;    

}

Embed on website

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