using namespace std;
void main()
{
int temp=0;
for(int x=1;x<10;x++)
{
for(int y=x;y<10;y++)
{
temp=x*y;
cout<<y<<'*'<<x<<'='<<temp<<"\t";
}
cout<<"\n";
}
}
void main()
{
int temp=0;
for(int x=1;x<10;x++)
{
for(int y=x;y<10;y++)
{
temp=x*y;
cout<<y<<'*'<<x<<'='<<temp<<"\t";
}
cout<<"\n";
}
}