#include<iostream> using namespace std; int main(){ for(int x=1;x<=9;x++){ for(int y=1;y<=x;y++) cout<<y<<"*"<<x<<"="<<y*x<<" "; cout<<endl; } return 0; }