#include #include using namespace std; int minimumNumber(int n, string password) { bool number = false ; bool lower= false; bool upper= false; bool special= false; int total=4; for(int i=0;i total){ return 6-n; } return total; } int main() { int n; cin >> n; string password; cin >> password; int answer = minimumNumber(n, password); cout << answer << endl; return 0; }