Make a program to calculate by the formula S = ПR²

var
r, s: real; // declare variables
begin
write (‘Enter R value:’); // display a text string
readln (r); // read the value entered from the keyboard
s: = 3.14 * power (r, 2); // calculate the formula
writeln (‘The result of calculating the formula is:’, s); // display the result on the screen
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.