#include <iostream> #include <string> #include <vector> using namespace std; bool IsInStr(char s, vector<char> LeftArry) { for(int i=0; i<LeftArry.size();++i) { if(s==LeftArry[i]) { return true; } } return false; } int main() { string s; getline(cin,s); int count = 0; vect...