#include <iostream>
using namespace std;
int main() {
//variable
int L= 4;
int h= 5;
//proceso
int A= L*h/2;
int P= L+L+L;
cout << "el area" << A;
cout << "el perimetro" << P;
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: