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