a = int(input("Введіть перше число: "))
n = int(input("Введіть кількість чисел: "))
summa = 0
current = a
for i in range(n):
summa += current
current += 6
print("Сума чисел:", summa)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
a = int(input("Введіть перше число: "))
n = int(input("Введіть кількість чисел: "))
summa = 0
current = a
for i in range(n):
summa += current
current += 6
print("Сума чисел:", summa)