int main () { Rectangle rect {5,6}; // calls Rectangle(int w, int h) cout << "area: " << rect.getWidth() * rect.getHeight() << endl; return 0; }