Заполнить массив A нулями(Паскаль)
Var a:array[1..100] of integer; n:integer; begin read(n); for I:1 to n do begin a[i]:=0; end; end.