// HJ10 字符个数统计.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。 #include<iostream> #include<bits/stdc++.h> using namespace std; int main() { string s; while (getline(cin, s)) { sort(s.begin(), s.end()); s.erase(unique(s.begin(), s.end()), s.end()); cout << s.size() << endl; } r...