#include <iostream>
#include <limits>
using namespace std;
int  main()
{
// declararvariable 
int L= 5;
// proceso 
int A= L*L ;
int p= L+L+L+L ;
cout << "el area" << A; 
cout << "el Perimetro" << p;
   return 0;
}

Embed on website

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