#include <iostream>
#include <string>
using namespace std;

int main(){
   string nome = "Teste";
   cout << nome.length() << endl;
}

//https://pt.stackoverflow.com/q/513275/101