#include <iostream> #include <stdio.h> using namespace std; int main(){ char c; int letter, digit, others; letter = digit = others = 0; while(cin>>c&&c!='?'){ if((c<='z'&&c>='a')||(c<='Z'&&c>='A')) letter++; else i...