#include <bits/stdc++.h> using namespace std; int main() { string str; getline(cin, str); int score=0; if(str.size()<=4){ score += 5; } else if(str.size()<=7){ score += 10; } else score += 25; int count_lower = 0, count_upper = 0, count_digit = 0, count_symbol = 0; for(int i=0; i<str....