Write a program that calculates the area of a rectangle along its two sides in pascal.

program zz1;
var a, b, c: real; // set variables of non-integer type
begin
write (‘enter the first side of the rectangle’); // enter the first side of the rectangle
read (a);
write (‘enter the second side of the rectangle’); // enter the second side of the rectangle
read (b);

c: = a * b; // calculate the area of the rectangle using a well-known formula
Writeln (‘the area of the rectangle given by the lengths of the sides =’, c);
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.