#include <iostream>
#include <string>
using namespace std;
int main () {
string txt = "Hello";
cout << txt.max_size();
return 0;
}