python/2024-6-16-1.py

7 lines
78 B
Python
Raw Normal View History

w=int(input())
s=int(input())
a=0
for i in range(w,s+1):
a=a+i*i
print(a)