C++ 代码
#include <bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
int n,ans=0;
cin>>n;
for(int i=1;i<=n;i++)
{
string x=to_string(i);
if(x.find("2")!=x.npos||x.find("0")!=x.npos||x.find("1")!=x.npos||x.find("9")!=x.npos)
ans+=stoi(x);
}
printf("%d\n",ans);
return 0;
}