// editor1
#include<iostream>
using namespace std;
int main()
{
    float l,b;
    cout<<"enter the length of the area:";
    cin>>l;
    cout<<"enter the width of the area:";
    cin>>b;
    cout<<"the calculated value is:"l*b;
}