Write a program calculating the area of a rectangle if 2 sides a and b are known.

If the sides of the rectangle are integers, then write integer, if fractional, then write real.
Program AB;
Var a, b, S: integer;
Begin
Readln (a, b);
S: = a * b;
Writeln (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.