#include #include using namespace std; char numbers[] = "0123456789"; char lower_case[] = "abcdefghijklmnopqrstuvwxyz"; char upper_case[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; char special_characters[] = "!@#$%^&*()-+"; int minimumNumber(int n, string password) { bool num,lc,uc,sc; num = lc = uc = sc = 1; int sol = 0; for(int i=0;i> n; string password; cin >> password; int answer = minimumNumber(n, password); cout << answer << endl; return 0; }