```
a =1
while a <10:
b =1
while b<=a:
print(str(a)+'*'+str(b)+'='+str(a*b),end="\t")
b+=1
print()
a+=1