#include <iostream>

int main()
{
  std::string text = "Hello World";
  std::cout << text << " hat " << text.size()
    << " Zeichen und ist damit ein eher kurzer Satz."
    << std::endl;
  return 0;
}
