#include using namespace std; typedef long long ll; typedef pair P; #define REP(i,n) for(ll i=0;i> N; set s; ll n=N.size(); REP(i,n){ REP(j,10){ string t=N; t.insert(i,1,char('0'+j)); s.insert(t); } } REP(i,10){ string t=N; t+=char('0'+i); s.insert(t); } cout << s.size()-1 << endl; return 0; }