mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 20:49:38 +02:00
11 lines
135 B
ObjectPascal
11 lines
135 B
ObjectPascal
var
|
|
s: ansistring;
|
|
i,j: integer;
|
|
begin
|
|
s := '15 305';
|
|
readstr(s,i,j);
|
|
if (i <> 15) or
|
|
(j <> 305) then
|
|
halt(1);
|
|
end.
|