Cod sursa(job #14948)
Utilizator | Data | 10 februarie 2007 12:24:33 | |
---|---|---|---|
Problema | Secventa 5 | Scor | 0 |
Compilator | fpc | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
var x:array[1..1 shl 21] of longint;
n,i:longint;
f:text;
begin
assign(f,'secv5.in'); reset(f);
readln(f,n);
for i:=1 to n do
readln(f,x[i]);
close(f);
end.