#include
int main()
{
using std::cout;
using std::endl;
unsigned short int Width = 5, Length;
Length = 10;
unsigned short int Area = (Width * Length);
cout << "Width:" << Width << endl;
cout << "Length: " << Length << endl;
cout << "Area: " << Area << endl;
return 0;
}