#include using namespace std; class Tree { public: Tree(int=4, int=12, int=0); void print(); private: int one,two,three; }; Tree::Tree(int a, int b, int c) { one = a; two = b; three = c; } void Tree::print() { cout << one << " " << two << " " << three << endl; } int main (void) { Tree house, farm(3,5); house.print(); // LINE ONE farm.print(); // LINE TWO }