#include <iostream> 

int main() 
{ 
  char c[2][6]; 

  c[0][0] = 'H'; 
  c[0][1] = 'a'; 
  c[0][2] = 'l'; 
  c[0][3] = 'l'; 
  c[0][4] = 'o'; 
  c[0][5] = '\0'; 
  c[1][0] = 'W'; 
  c[1][1] = 'e'; 
  c[1][2] = 'l'; 
  c[1][3] = 't'; 
  c[1][4] = '\0'; 
  std::cout << c[0] << " " << c[1] << std::endl; 
} 
