Create a program to find the cube of a number

program zz1;
var a, y: integer; // set variables of integer type
begin
write (‘enter the given number a’); // enter the original number a from the keyboard
read (a);
y: = a * a * a; // calculate the given number in the cube
write (‘cube of a given number’, y); // display 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.