Integer Text IO

For numeric integers Input and Output.

with Ada.Integer_Text_IO;

Put

Writes number in format String to output.

Standard Default Output is the console.

Put(N: Integer);
Put(N: Integer; Width: Integer);

Get

Reeads a number from the Standard Input (Console)

Standard Default Output is the console.

Get(N: Integer);