#include <iostream>

int main()
{
  auto a = 11;
  std::cout << "hello c++" << a << std::endl;
  return ( 0 );
}
