#include using namespace std; string str="!@#$%^&*()-+"; bool is_digit(char a){ if(a>='0'&&a<='9')return true; return false; } bool is_lower(char a){ if(a>='a'&&a<='z')return true; return false; } bool is_upper(char a){ if(a>='A'&&a<='Z')return true; return false; } bool is_spe(char a){ for(int i=0;i> n; string password; cin >> password; int answer = minimumNumber(n, password); cout << answer << endl; return 0; }