// CST 116, Lab 1 - Alexandra Apetroaei #include using namespace std; using std::cout; using std::cin; using std::endl; int main() { int height = 0; int width = 0; cout << "Insert the width: "; cin >> height; cout << "Insert height: "; cin >> width; }