#include <iostream>

using namespace std;

int main()
{
   // Other values will be set during testing.
   // Your program needs to work with any width and height.

   double width = 10; 
   double height = 20; 
      
   // Compute the area of a rectangle
   // with the given height and width

   double area = width*height;

   // The following instructions print out your results

   cout << "Area: " << area << endl;

   return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: