#include using namespace std; int minimumNumber(int n, string s) { // Return the minimum number of characters to make the password strong string a = "0123456789"; string b = "abcdefghijklmnopqrstuvwxyz"; string c = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; string d = "!@#$%^&*()-+"; bool flag=false; int ans=0; for(int i=0; i> n; string password; cin >> password; int answer = minimumNumber(n, password); cout << answer << endl; return 0; }