Create a program to enter two numbers and display the sum of their cubes.

Program P1;
var x, y, z: real;
begin
writeln (‘enter two numbers’);
readln (x, y);
z: = x * x * x + y * y * y;
writeln (‘the sum of the cubes of these numbers =’, z);
readln;
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.