a=1 while a<=9: b=1 while b<=a: c=b*a print(str(b)+"*"+str(a)+"="+str(c),end="\t") b=b+1 a=a+1 print("")