@ -0,0 +1,5 @@
# 计算从 1 到 100 的和
total = 0
for i in range(1, 101):
total += i
print("1 到 100 的和是:", total)