• + 12 comments

    import sys

    N = int(input().strip())

    for i in range(1,11):

    print("{} x {} = {}".format(N, i, (N*i)))