#include using namespace std; int main(){ int A=0, B=5, ans=0; cin >> A >> B; for(int i=A; i<=B; i++) if((A+B+i)%3==0) ans++; cout << ans << endl; }