9 lines
97 B
Plaintext
9 lines
97 B
Plaintext
program Test;
|
|
|
|
uses Crt;
|
|
var t:string;
|
|
|
|
begin
|
|
ReadLn(t);
|
|
WriteLn('Ausgabe: '+t);
|
|
end. |