How To Print Multiplication Table

      #MULTIPLICATION TABLE



print('MULTIPLICATION TABLE')

n=int(input('\nEnter Number Of Which Table is Needed :- '))
d=int(input('\nEnter Number Till Which Product is Needed :- '))

x=' '
for i in range(1,d+1):
    x=x+str(i*n)
    print (n,'x',i,'=',x)
    x=' '


Made By :-
         Nilay Saraf

Comments

Popular Posts