#include <string>
#include <iostream>

int main()
{
  std::string s = "hello \n world!";
  std::cout << s << std::endl;
}