#include using namespace std; int main() { int width, length, total_Length; cout << "Hello\n"; cout << "Press return after entering a number.\n"; cout << "Enter the width:\n"; cin >> width; cout << "Enter the length:/n"; cin >> length; total_Length = 2 * width + 2 * length; cout << "If you have a "; cout << width; cout << " and "; cout << length; cout << " then\n"; cout << "you have "; cout << total_Length; cout << " Goodbye!\n"; return 0; }