a, b = map(int, input().split())total = 0if a % 2 != 0: a += 1for i in range(a, b+1, 2): total += iprint(total)
將數字限制為偶數
如果不是偶数,则将其增加1