#include<stdio.h>
#include<conio.h>
void table(int no)
{
int k;
for (k = 0; k <= 10; k++)
{
printf("\n %d x %d = %d", no, k, k * no);
}
}
int main()
{
clrscr();
table(4);
table(6);
getch();
}