let str='';
for(let i=1;i<=9;i++){
for(let w=1;w<=i;w++){
str+=w+'x'+i+'='+i*w+'\t';
}
str+='\n';
}
console.log(str);
let str='';
for(let i=1;i<=9;i++){
for(let w=1;w<=i;w++){
str+=w+'x'+i+'='+i*w+'\t';
}
str+='\n';
}
console.log(str);