#include <iostream>
#include <string>

int main()
{
  std::string text = "Hello World";
  std::cout << text << ". Zeichenanzahl: " << text.size();
  return 0;
}
