#include using namespace std; string numbers = "0123456789"; string lower_case = "abcdefghijklmnopqrstuvwxyz"; string upper_case = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; string special_characters = "!@#$%^&*()-+"; int isOk(char x, string S) { for(int i=0; i> n; string password; cin >> password; int answer = minimumNumber(n, password); cout << answer << endl; return 0; }