num = int(input("Please provide an integer value for multiplication table: ")) print(num) for i in range(1, 21): print(num,"X",i,"=",num * i)