#include <stdio.h>
int main() {
int i, a, product;
scanf("%d",&a);
printf("the multiplication table of %d",a);
for (i=0; i<13;i++){
product=a*i;
printf("\n%d*%d=%d",a,i,product);
}
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: