total = 0
x = 1
y = 2
while y <= 100:
    total += x * y
    x += 2
    y += 2

print(total)

 

相关文章: