Ответ:
n = int(input())total = 0for i in range(1, n+1): total= total +(i**2)print (total)
Объяснение:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
n = int(input())
total = 0
for i in range(1, n+1):
total= total +(i**2)
print (total)
Объяснение: