#include<stdio.h>int main(){ int a,b,ans=0; scanf("%d %d",&a,&b); for( ;a<=b;a++) { if(a%2==0) { ans++; } } printf("%d",ans); return 0;}