• + 0 comments

    python3

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