10 lines
159 B
ObjectPascal
10 lines
159 B
ObjectPascal
|
|
program UserInput(input, output);
|
||
|
|
var i : Integer;
|
||
|
|
s : String;
|
||
|
|
begin
|
||
|
|
write('Enter an integer: ');
|
||
|
|
readln(i);
|
||
|
|
write('Enter a string: ');
|
||
|
|
readln(s)
|
||
|
|
end.
|