fork download
  1. #include <bits/stdc++.h>
  2. #include <algorithm>
  3. using namespace std;
  4.  
  5. int main() {
  6. string c;
  7. cin >> c;
  8. int tamanho = c.length();
  9. cout << tamanho;
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 5320KB
stdin
abobora
stdout
7