a = list(map(int,input().split(" "))) b = 0 for i in range(min(a),max(a)+1): if i%2==0: b+=i print(b)