class TheBeauty { public: int find(int n) { if (n == 0) return 1; set<int> s; while (n) { s.insert(n % 10); n /= 10; } return s.size(); } };