1 2 3 4 5 6 7 8 9 10 11 12
var a : Array[1..100] of integer; i,j : Integer; begin for I:=1 to 100 do A[I]:=I; for j:=1 to 100 do writeln(A[j]); end.