Input file

Input File

struct house_light {
    int power; // The currently installed wattage of the light.
    enum status {on, off, broken};
    string brand;
};
 
Anthony Symons