#include #include void goodbye() { std::cout << "This is the last voice you will ever hear\n" " --- Frankie goes to Hollywood\n"; } int main() { std::atexit(goodbye); std::cout << "Greetings from beyond...\n"; }