#Table of Nn=int(input('Enter N to print its table:'))for i in range(1,11): print('{} x {} = {}'.format(n,i,n*i))
No comments
Post your comments