// Demonstration of variables #include int main() { using std::cout; using std::endl; unsigned short int Width = 5, Length; Length = 10; // create an unsigned short and initialize with result // of multiplying Width by Length unsigned short int Area = (Width * Length); cout << "Width:" << Width << "\n"; cout << "Length: " << Length << endl; cout << "Area: " << Area << endl; system("PAUSE"); // prevent the console window from closing return 0; }