Print the first 4 multiples of the given number N (N is a
integer)
Answers
Answered by
1
#python program
def multiple(m, n):
a = range(n, (m * n)+1, n)
print(*a)
m = int(input())
n = int(input())
multiple(m, n)
Similar questions