#include<stdio.h>
main()
{
int i,j;
for(i=1;i<=13;i++)
{
for(j=1;j<=i;j++){
printf("%d*%d=%d\t",j,i,i*j);
}
printf("\n");
}
}
#include<stdio.h>
main()
{
int i,j;
for(i=1;i<=13;i++)
{
for(j=1;j<=i;j++){
printf("%d*%d=%d\t",j,i,i*j);
}
printf("\n");
}
}