1234567891011121314
#include <iostream> using namespace std; int main() { int area = 1; int perimeter = 4; cout << "Area of square with 1 m side: " << area << " m^2\n"; cout << "Perimeter of sqare with 1 m side: " << perimeter << " m\n"; return 0; }