
def PGTmult():
    n = int(input("n? "))
    for j in range(1, 10+1):
        print(j, " * ", n, " = ", (j * n), sep="")

PGTmult()