#include <iostream>
//Program POLE Trójkąta
using namespace std;
int main()
{
double a,h,w;
cout << "Podaj dlugosc a=";
cin >> a;
cout << "Podaj wysokośc(h): " << endl;
cin >> h;
w=0,5*h*a;
cout << "Pole trójkąta wynosi "
<< w;
system("PAUSE");
return 0;
}