• + 0 comments

    Python:

    n = int(input().strip())
    for i in range(1,11):
        print(f'{n} x {i} = {n*i}')