用while编代码计算1+2+……+100

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

a=1
b=2
n=1
while n<100:
	a=a+b
	b=b+1
	n=n+1
	
print a