#include<bits/stdc++.h>
using namespace std;
int main(){
int l,r;
cin>>l>>r;
int res=0;
for(int i=l;i<=r;i++){
int k=i;
while(k){
if(k%10==2)
res++;
k/=10;
}
}
cout<<res;
return 0;
}