Cod sursa(job #16952)
Utilizator | Data | 14 februarie 2007 15:52:39 | |
---|---|---|---|
Problema | Secventa 5 | Scor | 0 |
Compilator | fpc | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
var n,l,u:longint;
i,x:longint;
begin
assign(input,'secv5.in'); reset(input);
assign(output,'secv5.out'); rewritE(output);
readln(n,l,u);
for i:=1 to n do
readln(x);
writeln(0);
close(input);
close(output);
end.