Computer Science, asked by karthikr67, 6 months ago

Accept 2 numbers: n and x. n represents the number for which we need to calculate multiples. x represents the number of multiples. The program should print x multiples of n. For example, if n = 6 and x = 3, the output should be 6, 12 and 18.

Answers

Answered by sourabh46
1

Answer:

21313210325132561325123

Explanation:

Answered by nishkakulkarni
4

Answer:

A=int(input('Enter the multiply no'))

B=int(input('Enter the no of multipliers'))

i=1

while i<=B:    

      print('the',i,'multiple of',A,'is',A*i)  

      i=i+1

Hope this helps someone!

Similar questions
Math, 3 months ago