Make a program Find the area of a rectangle if S = 1/2 a * b

Pascal ABC

program plochad;
var
a, b: integer;
s: real;
begin
readln (‘Enter a:’, a);
readln (‘Enter b:’, b);
s: = (a * b) / 2;
writeln (‘Area is:’, s);
end.



One of the components of a person's success in our time is receiving modern high-quality education, mastering the knowledge, skills and abilities necessary for life in society. A person today needs to study almost all his life, mastering everything new and new, acquiring the necessary professional qualities.