print(sum(range(101)))


s = 0
for i in range(101):
s += i
print(s)
 

相关文章: