#include #include #include #include #include using namespace std; int main() { /* Enter your code here. Read input from STDIN. Print output to STDOUT */ int size; cin >> size; string password; cin >> password; int chars_to_add = 0; bool has_digit = false; bool has_lower = false; bool has_upper = false; bool has_special = false; for (int i =0 ; i < size; i++) { if ((password[i] >= 'a') && password[i] <= 'z') { has_lower = true; //cerr << "Has lower case" <= 'A') && password[i] <= 'Z') { has_upper = true; //cerr << "Has upper case" <= '0') && password[i] <= '9') { has_digit = true; //cerr << "Has digit case" <