#include <iostream>using namespace std; class Greeting {public: void sayGoodby() { cout << "Goodby!"; }};Greeting greeting;greeting.sayGoodby();