أخي انت لم توضح ألية عمله , لكن هذا هو كود برنامج بسيط
#eslam el beak
print("The Multiply numbers of is ")
numbers = [5, 6, 7, 8, 9, 10,11,12,13,14,15]
# variable to store the square of each num temporary
sq = 0
# iterating over the given list
for val in numbers:
# calculating square of each number
sq = val * val
print(numbers[0],val, ":",sq)