#include <iostream>
int main() { int a,b,c=0; scanf("%d %d",&a,&b); a=a+(a%2); // 1 => 2 b=b-(b%2); // 5 => 4 c=(b-a)/2+1; printf("%d",c);
}