#include using namespace std; int minimumNumber(int n, string p) { int lower=0,upper=0,digit=0,other=0; for(int i=0;i=6) return cnt; else return 6-n; // Return the minimum number of characters to make the password strong } int main() { int n; cin >> n; string password; cin >> password; int answer = minimumNumber(n, password); cout << answer << endl; return 0; }