#include<iostream.h>
#include<math.h>
int main()
{enum color{white,black};
struct lifangti
{
int lenth;
int width;
int height;
enum color lifangticolor;
}little;
little.lenth=10;
little.width=10;
little.height=10;
little.lifangticolor=black;
cout<<"Area of lifangti:"<<little.lenth*little.width*little.height<<endl;
if(little.lifangticolor==0)
cout<<"Color of lifangli is: white"<<endl;
else
cout<<"Color of lifangli is: black"<<endl;
return 0;
}