a,b=map(int,input().split())
```
b//2表示小於等於b的所有偶數個數
(a-1)//2表示除了a本身,小於a的偶數個數
相減即為所求
print((b//2-(a-1)//2))