#python 100 例 6.py


#输出9*9口决



for i in range(1,10):

    for j in range(1,10):

        a = i * j

        print (i ,"*",j ,"=",a )