#include<stdio.h>
#include<conio.h>
void main()
{
int a,i,n1,n2,m;
printf("Enter the first and last value of the series\n");
scanf("%d,%d",&n1,&n2);
for(a=n1;a<=n2;a++)
{
printf("\n The multiplication table is");
for(i=1;i<=10;i++)
{
m=a*i;
printf("\n%d*%d=%d",a,i,m);
}
}
getch();
}