#include <bits/stdc++.h>
using namespace std;
string str;
int x,y,cnt = 0;
int main(){
cin>>x>>y;
for(int i=x;i<=y;i++)
{
str = to_string(i); // to_string 将int 转 string
cnt+=count(str.begin(),str.end(),'2'); // count 统计
}
cout<<cnt<<endl;
return 0;
}