s=0 a,b=map(int,input().split()) for i in range(a,b+1): if i % 4==0 and i % 100!=0: s+=i if i%400==0: s+=i print(s)
#哪里错了? Python