#include using namespace std; class Furnace { public: Furnace(int=0, int=0); int getHot(); int getWarm(); private: int hot; int warm; };