# Enter a code
a=0
b=0
while True:
if a > 1000:
break
if a %2 == 0:
a=a+b
a=a+1
print(a)
因为你写错了
if a % 2 == 0:
b=b+a
print(b)
这样才对