Enter 2 numbers from the keyboard in the range from 0 to 999. Display them in a column in a form

Enter 2 numbers from the keyboard in the range from 0 to 999. Display them in a column in a form convenient for addition or multiplication. That is, the first bit of the first number is under the first bit of the second number, the second bit is under the second, etc.

program zz1;

var a, b: integer; // introduce variables of integer type

begin

write (‘enter the first number in the range from 0 to 999’); // enter the first number from the keyboard

read (a);

write (‘enter the second number between 0 and 999’); // enter the second number from the keyboard

read (b);

writeln (a: 5); // display the first answer

write (b: 5); // print the second 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.