unit lungomare;

interface

function percorri(N: longint; L: int64; var D, P: array of int64): int64;

implementation

function percorri(N: longint; L: int64; var D, P: array of int64): int64;
begin
	D[0] := 123456789123;
	P[0] := 123456789123;
	percorri := 123456789123;
end;

end.
