#include using namespace std; void fast_io() { ios::sync_with_stdio(false); std::cin.tie(nullptr); } int main() { fast_io(); string n; cin >> n; set st; for (int i = 0; i <= n.size(); i++) { for (char j = (i ? '0' : '1'); j <= '9'; j++) { st.insert(n.substr(0, i) + j + n.substr(i)); } } cout << st.size() << endl; }