#___author: #date: 2021/6/9#while #循环# a = 0# while a <=100:# print(a,end="\t")# a +=2b = 0c = 0while b<=100: c = c + b b+=1print(c)