#include <string> 
#include <iostream> 

int main() 
{ 
  int i = 2; 
  std::string s = "Hallo"; 
  std::cout << i << s << std::endl; 
} 