Write a program in Pascal. Enter 2 numbers the first number-degree three times-any real number

Write a program in Pascal. Enter 2 numbers the first number-degree three times-any real number calculate the degree with a natural exponent n for any real number a.

var
a: integer; // declare a variable.
n: real; // declare a variable.
begin
writeln (‘Enter two numbers:’); // display the string.
readln (a, n); // read two numbers entered from the keyboard.
writeln (‘Answer:’, n, ‘to the power of’, a, ‘equals:’, power (n, a)); // display the line with the answer.
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.