// 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() { float width, height,area; cout << "Enter width (cm) : "; cin >> width; cout << "Enter height (cm) : "; cin >> height; cout << "width: "; cout << width<< endl; cout << "height: "; cout << height << endl; area = (width * height / 2) / 10000; cout << "area (m) : "; cout << area << endl; }