for i in range(1,10): print(' ') for j in range(1,i+1): print(str(j)+'*'+str(i) +'='+str(i*j) +' ',end='')