Answer:
lst = []
multiple = []
num = int(input('How many numbers: '))
multipleOf = int(input('Enter the number to multiply with: '))
for n in range(num):
lst.append(n)
numbers = n * multipleOf
multiple.append(numbers)
print("elements in given list is :", lst)
print("multiple in given list is :", multiple)
Step-by-step explanation:
User will enter the number and then enter the number to multiply that list.