Составить прграмму S=1/2 A×N
Program S; var s,a,n:of integer; begin read(a); read(n); s:=(a*n)/2; writeln(s); end.