#include<iostream.h>
#include<conio.h>
main()
{
int a[10]={1,2,3,4,5,6,7,8,9,10};
int b[10]={1,2,3,4,5,6,7,8,9,10},c[10][10];
for(int i=0;i<10;i++)
{
for(int j=0;j<10;j++)
{
c[i][j]=a[i]*b[j];
if(c[i][j]<10)cout<<" "<<c[i][j]<<" ";
else cout<<c[i][j]<<" ";
}
cout<<endl;
}
cout<<endl;
getch();
return 0;
}