WAP to display multiply of numbers from N to M
WAP to display multiply of numbers from N to M
#Program By eboostup.com
#WAP to display multiply of numbers from N to M
mt=int(input("The Multiplication of: "))
n=int(input("Enter (N)starting no. : "))
m=int(input("Enter (M)ending no. : "))
while n<= 10:
m = m * 1
print (mt, 'x', n, '=', mt * n)
n += 1
#ankush
print("Powered By eboostup")
