// BlankConsoleLab.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include using namespace std; using std::cout; using std::cin; using std::endl; int main() { int length; int width; cout << "How long is your kite in centimeters? "; cin >> length; cout << endl << "How wide is your kite in centimeters? "; cin >> width; }