Computer Science, asked by aashavelayutham, 3 months ago

Print the first 4 multiples of the given number N (N is a
integer)​

Answers

Answered by himanshu2006vps
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