#include #include #include #include #include #include using namespace std; bool isUpper(char c){ if(c>=65&&c<=90) return true; return false; } bool isLower(char c){ if(c>=97&&c<=122){ return true; } return false; } bool isDigit(char c){ if(c-'0'>=0&&c-'0'<=9) return true; return false; } bool isSpecial(char c){ string special_characters = "!@#$%^&*()-+"; for(int i=0;i=6){ return 0; } if(s.length()<6){ return 6-s.length(); } } if(s.length()>=6){ return 4-count; } if(4-count+s.length()<6){ return (4-count)+(6-s.length()-4+count); } else { return 4-count; } } int main() { /* Enter your code here. Read input from STDIN. Print output to STDOUT */ int len; string s; cin>>len; cin>>s; cout<