#include<iostream>
using namespace std;
int a, b;
int main()
{
cout<<"program obliczajacy pole prostokata"<<endl;
cout<<"podaj bok pierwszy a: ";
cin>>a;
cout<<"podaj bok drugi b: ";
cin>>b;
cout<<"pole tego prostokata to: "<<a * b<<" a obwod to "<<(2 * a) + (2 *b)<<endl;
return 0;
}
#include<iostream>
using namespace std;
int a, b;
int main()
{
cout<<"program obliczajacy podstawowe dzialania arytmetyczne"<<endl;
cout<<"podaj pierwsza liczbe: ";
cin>>a;
cout<<"podaj druga liczbe: ";
cin>>b;
cout<<"suma liczb a i b to: "<<a+b<<endl;
cout<<"roznica liczb a i b to: "<<a-b<<endl;
cout<<"iloczyn liczb a i b to: "<<a*b<<endl;
cout<<"iloraz liczb a i b to: "<<a/b<<endl;
return 0;
}