#include using namespace std; int minimumNumber(int n, string p) { // Return the minimum number of characters to make the password strong bool l=false,u=false,s=false,d=false; for(int i=0;i='0'&&p[i]<='9') d=true; if(p[i]>='a'&&p[i]<='z') l=true; if(p[i]>='A'&&p[i]<='Z') u=true; string sp = "!@#$%^&*()-+"; for(int j=0;j> n; string password; cin >> password; int answer = minimumNumber(n, password); cout << answer << endl; return 0; }