#include <iostream>

int main()
{

  std::cout << "Hello, world" << '\n';
  
  std::cout << "Goodbye\n";

  return 0;

}
