#include <iostream>

struct C {
  C() {}
  C(const C&) { std::cout << "A copy was made." << std::endl; }
};
 
C f() {
  return C();
}
 
int main() {
  std::cout << "Hello World!" << std::endl;
  C obj = f();
  return 0;
}
