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