#include #include "Property.h" #include "House.h" #include "Land.h" using namespace std; using namespace ESTATE; int main() { int land_price = 300000; int land_size = 10000; int house_price = 600000; int house_size = 2000; Land l1(land_price,land_size); PRINT("-----------\n"); House h1(house_price,house_size,land_size); PRINT("-----------\n"); return 0; }