Var a:array[1..100] of integer;
i,n,d,k:integer;
Begin
Write('So phan tu:');readln(n);
For i:=1 to n do
Begin
Write('Phan tu thu' ,i,' co gia tri:' ); readln(a[i]);
End;
k:=0;
d:=0;
For i:=1 to n do
Begin
If a[i]=100 then k:=k+1;
If (a[i]<100) or (a[i]>-100) then d:=d+1;
End;
Write('So ptu co gtri =100' ,k);
write('So ptu <100 hoac >-100' ,d);
readln;
end.