#include <iostream> 
#include <string> 

int main() 
{ 
  std::string a, b, c; 

  a = "Hallo, "; 
  b = "Welt"; 
  c = a + b; 
  std::cout << c << std::endl; 
} 
