#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { string str; getline(cin,str); vector<int> tongji(0); tongji.resize(128); for(int i=0;i<str.size();i++){ tongji[(int)str[i]] = 1; } cout<<count(tongji.begin(), tongji.end(), 1...