#include <iostream> #include <cstring> using namespace std; int main() { string a; int b; getline(cin, a); b = strlen(a); cout<<b; }
修正有关