#include using namespace std; using std::cout; using std::cin; using std::endl; int length = 0; int width = 0; int area = ((length * width) / 2); int main () { // Following code is to find the area of the kite // Asking the user to input the length and width in centimetres cout << "What is the length of the kite in cm?\n"; cin >> length; cout << "What is the width of the kite in cm? \n"; cin >> width; if (length || width >= 401) { cout << "Measurement too big. Enter a number between 0-400 \n"; } else { cout << "The Area of the kite is: \n" << ((length * width) / 2) << "centimetres \n"; cout << "In Square centimetres this is: \n" << (((length * width) / 2) / 10000) << " Square Meters! \n"; } return area; }