First M multiples of N



a=int(input())

v=int(input())

for i in range(1,v+1):

    print(a*i,end="")

Post a Comment

0 Comments