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
1
Answer:
21313210325132561325123
Explanation:
Answered by
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
English,
7 months ago
Computer Science,
7 months ago
Social Sciences,
11 months ago
Physics,
11 months ago
Math,
11 months ago