#include #include #include #include #include #include #include using namespace std; /* * strongify a password */ string numbers = "0123456789"; string lower_case = "abcdefghijklmnopqrstuvwxyz"; string upper_case = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; string special_characters = "!@#$%^&*()-+"; int main() { int N; string inp; cin >> N; cin >> inp; int numNeeded = 0; // check 6 if (N < 6) numNeeded = 6-N; // check digit string::iterator it; bool bNum = false; bool bLow = false; bool bUpp = false; bool bSpe = false; for (it = inp.begin(); it